bundlePagesRouterDependencies
Enable automatic server-side dependency bundling for Pages Router applications. Matches the automatic dependency bundling in App Router.
next.config.js
/** @type {import('next').NextConfig} */ const nextConfig = { bundlePagesRouterDependencies: true, } module.exports = nextConfigExplicitly opt-out certain packages from being bundled using the serverExternalPackages option.
Version History
| Version | Changes |
|---|---|
v15.0.0 | Moved from experimental to stable. Renamed from bundlePagesExternals to bundlePagesRouterDependencies |
Was this helpful?