Skip to content

bundlePagesRouterDependencies

Source URL: https://nextjs.org/docs/pages/api-reference/config/next-config-js/bundlePagesRouterDependencies

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

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

VersionChanges
v15.0.0Moved from experimental to stable. Renamed from bundlePagesExternals to bundlePagesRouterDependencies