升级到版本 9
要升级到版本 9,请运行以下命令
npm i next@9
yarn add next@9
pnpm up next@9
bun add next@9
注意:如果您使用的是 TypeScript,请确保您也将其升级
@types/react
和@types/react-dom
到其对应的版本。
在 Vercel 上进行生产部署
如果您之前在您的vercel.json
文件中为动态路由配置了routes
,则在利用 Next.js 9 的新动态路由功能时,可以删除这些规则。
Next.js 9 的动态路由在Vercel上**自动配置**,不需要任何vercel.json
自定义。
您可以阅读更多关于动态路由的信息。
检查您的自定义 App 文件 (pages/_app.js
)
如果您之前复制了自定义<App>
示例,您可能可以删除您的getInitialProps
。
删除pages/_app.js
中的getInitialProps
(在可能的情况下)对于利用新的 Next.js 功能非常重要!
以下getInitialProps
什么也不做,可以删除
class MyApp extends App {
// Remove me, I do nothing!
static async getInitialProps({ Component, ctx }) {
let pageProps = {}
if (Component.getInitialProps) {
pageProps = await Component.getInitialProps(ctx)
}
return { pageProps }
}
render() {
// ... etc
}
}
重大更改
@zeit/next-typescript
不再需要
Next.js 现在将忽略使用@zeit/next-typescript
并警告您将其删除。请从您的next.config.js
中删除此插件。
从您的自定义.babelrc
(如果存在)中删除对@zeit/next-typescript/babel
的引用。
使用fork-ts-checker-webpack-plugin
也应从您的next.config.js
中删除。
TypeScript 定义已与next
包一起发布,因此您需要卸载@types/next
,因为它们会发生冲突。
以下类型有所不同
此列表由社区创建,以帮助您进行升级,如果您发现其他差异,请向此列表发送拉取请求以帮助其他用户。
从
import { NextContext } from 'next'
import { NextAppContext, DefaultAppIProps } from 'next/app'
import { NextDocumentContext, DefaultDocumentIProps } from 'next/document'
到
import { NextPageContext } from 'next'
import { AppContext, AppInitialProps } from 'next/app'
import { DocumentContext, DocumentInitialProps } from 'next/document'
config
键现在是页面上的导出项
您现在不能再从页面导出名为 config
的自定义变量(例如 export { config }
/ export const config ...
)。此导出变量现在用于指定页面级别的 Next.js 配置,例如选择加入 AMP 和 API 路由功能。
您必须将非 Next.js 用途的 config
导出重命名为其他名称。
next/dynamic
在加载时不再默认渲染“加载中…”
动态组件在加载时默认不会渲染任何内容。您仍然可以通过设置 loading
属性来自定义此行为。
import dynamic from 'next/dynamic'
const DynamicComponentWithCustomLoading = dynamic(
() => import('../components/hello2'),
{
loading: () => <p>Loading</p>,
}
)
withAmp
已被移除,取而代之的是一个导出的配置对象
Next.js 现在引入了页面级配置的概念,因此为了保持一致性,已移除 withAmp
高阶组件。
此更改可以通过**在 Next.js 项目的根目录中运行以下命令自动迁移:**
curl -L https://github.com/vercel/next-codemod/archive/master.tar.gz | tar -xz --strip=2 next-codemod-master/transforms/withamp-to-config.js npx jscodeshift -t ./withamp-to-config.js pages/**/*.js
要手动执行此迁移,或查看代码修改将生成的内容,请参见下文
之前
import { withAmp } from 'next/amp'
function Home() {
return <h1>My AMP Page</h1>
}
export default withAmp(Home)
// or
export default withAmp(Home, { hybrid: true })
之后
export default function Home() {
return <h1>My AMP Page</h1>
}
export const config = {
amp: true,
// or
amp: 'hybrid',
}
next export
不再将页面导出为 index.html
以前,导出 pages/about.js
会生成 out/about/index.html
。此行为已更改为生成 out/about.html
。
您可以通过创建一个包含以下内容的 next.config.js
文件来恢复以前的行为。
module.exports = {
trailingSlash: true,
}
pages/api/
的处理方式不同
pages/api/
中的页面现在被视为API 路由。此目录中的页面将不再包含客户端 bundle。
已弃用的功能
next/dynamic
已弃用一次加载多个模块
next/dynamic
中已弃用一次加载多个模块的功能,以使其更接近 React 的实现(React.lazy
和 Suspense
)。
更新依赖于此行为的代码相对简单!我们提供了一个前后示例来帮助您迁移应用程序。
之前
import dynamic from 'next/dynamic'
const HelloBundle = dynamic({
modules: () => {
const components = {
Hello1: () => import('../components/hello1').then((m) => m.default),
Hello2: () => import('../components/hello2').then((m) => m.default),
}
return components
},
render: (props, { Hello1, Hello2 }) => (
<div>
<h1>{props.title}</h1>
<Hello1 />
<Hello2 />
</div>
),
})
function DynamicBundle() {
return <HelloBundle title="Dynamic Bundle" />
}
export default DynamicBundle
之后
import dynamic from 'next/dynamic'
const Hello1 = dynamic(() => import('../components/hello1'))
const Hello2 = dynamic(() => import('../components/hello2'))
function HelloBundle({ title }) {
return (
<div>
<h1>{title}</h1>
<Hello1 />
<Hello2 />
</div>
)
}
function DynamicBundle() {
return <HelloBundle title="Dynamic Bundle" />
}
export default DynamicBundle
这有帮助吗?