自定义 Webpack 配置
须知:对 webpack 配置的更改不受 semver 约束,因此请自行承担风险
在继续向应用程序添加自定义 webpack 配置之前,请确保 Next.js 尚未支持您的用例
一些常用功能可作为插件使用
为了扩展 webpack 的使用,您可以在 next.config.js 中定义一个函数来扩展其配置,如下所示
next.config.js
module.exports = {
webpack: (
config,
{ buildId, dev, isServer, defaultLoaders, nextRuntime, webpack }
) => {
// Important: return the modified config
return config
},
}
webpack函数执行三次,服务器端(nodejs / edge runtime)两次,客户端一次。这允许您使用isServer属性区分客户端和服务器配置。
webpack 函数的第二个参数是一个包含以下属性的对象
buildId:String- 构建 ID,用作构建之间的唯一标识符。dev:Boolean- 指示编译是否在开发环境中完成。isServer:Boolean- 服务器端编译时为true,客户端编译时为false。nextRuntime:String | undefined- 服务器端编译的目标运行时;可以是"edge"或"nodejs",客户端编译时为undefined。defaultLoaders:Object- Next.js 内部使用的默认加载器babel:Object- 默认的babel-loader配置。
defaultLoaders.babel 的使用示例
// Example config for adding a loader that depends on babel-loader
// This source was taken from the @next/mdx plugin source:
// https://github.com/vercel/next.js/tree/canary/packages/next-mdx
module.exports = {
webpack: (config, options) => {
config.module.rules.push({
test: /\.mdx/,
use: [
options.defaultLoaders.babel,
{
loader: '@mdx-js/loader',
options: pluginOptions.options,
},
],
})
return config
},
}nextRuntime
请注意,当 nextRuntime 为 "edge" 或 "nodejs" 时,isServer 为 true,目前 nextRuntime "edge" 仅适用于 Edge Runtime 中的代理和服务器组件。
这有帮助吗?