Skip to main content

bundlePagesRouterDependencies

为 Pages Router 应用启用自动服务器端依赖打包。匹配 App Router 中的自动依赖打包。

¥Enable automatic server-side dependency bundling for Pages Router applications. Matches the automatic dependency bundling in App Router.

/** @type {import('next').NextConfig} */
const nextConfig = {
bundlePagesRouterDependencies: true,
}

module.exports = nextConfig

使用 serverExternalPackages 选项明确选择不打包某些包。

¥Explicitly opt-out certain packages from being bundled using the serverExternalPackages option.

版本历史

¥Version History

版本变化
v15.0.0从实验移至稳定。从 bundlePagesExternals 重命名为 bundlePagesRouterDependencies