next.config.js Options
Source URL: https://nextjs.org/docs/pages/api-reference/config/next-config-js
next.config.js Options
Section titled “next.config.js Options”Next.js can be configured through a next.config.js file in the root of your project directory (for example, by package.json) with a default export.
// @ts-check
/** @type {import('next').NextConfig} */const nextConfig = { /* config options here */}
module.exports = nextConfigECMAScript Modules
Section titled “ECMAScript Modules”next.config.js is a regular Node.js module, not a JSON file. It gets used by the Next.js server and build phases, and it’s not included in the browser build.
If you need ECMAScript modules, you can use next.config.mjs:
// @ts-check
/** * @type {import('next').NextConfig} */const nextConfig = { /* config options here */}
export default nextConfigGood to know:
next.configwith the.cjsor.ctsextensions are currently not supported.
Configuration as a Function
Section titled “Configuration as a Function”You can also use a function:
// @ts-check
export default (phase, { defaultConfig }) => { /** * @type {import('next').NextConfig} */ const nextConfig = { /* config options here */ } return nextConfig}Async Configuration
Section titled “Async Configuration”Since Next.js 12.1.0, you can use an async function:
// @ts-check
module.exports = async (phase, { defaultConfig }) => { /** * @type {import('next').NextConfig} */ const nextConfig = { /* config options here */ } return nextConfig}phase is the current context in which the configuration is loaded. You can see the available phases. Phases can be imported from next/constants:
// @ts-check
const { PHASE_DEVELOPMENT_SERVER } = require('next/constants')
module.exports = (phase, { defaultConfig }) => { if (phase === PHASE_DEVELOPMENT_SERVER) { return { /* development only config options here */ } }
return { /* config options for all phases except development here */ }}TypeScript
Section titled “TypeScript”If you are using TypeScript in your project, you can use next.config.ts to use TypeScript in your configuration:
import type { NextConfig } from 'next'
const nextConfig: NextConfig = { /* config options here */}
export default nextConfigThe commented lines are the place where you can put the configs allowed by next.config.js, which are defined in this file.
However, none of the configs are required, and it’s not necessary to understand what each config does. Instead, search for the features you need to enable or modify in this section and they will show you what to do.
Avoid using new JavaScript features not available in your target Node.js version.
next.config.jswill not be parsed by Webpack or Babel.
This page documents all the available configuration options:
Unit Testing (experimental)
Section titled “Unit Testing (experimental)”Starting in Next.js 15.1, the next/experimental/testing/server package contains utilities to help unit test next.config.js files.
The unstable_getResponseFromNextConfig function runs the headers, redirects, and rewrites functions from next.config.js with the provided request information and returns NextResponse with the results of the routing.
The response from
unstable_getResponseFromNextConfigonly considersnext.config.jsfields and does not consider proxy or filesystem routes, so the result in production may be different than the unit test.
import { getRedirectUrl, unstable_getResponseFromNextConfig,} from 'next/experimental/testing/server'
const response = await unstable_getResponseFromNextConfig({ url: 'https://nextjs.org/test', nextConfig: { async redirects() { return [{ source: '/test', destination: '/test2', permanent: false }] }, },})expect(response.status).toEqual(307)expect(getRedirectUrl(response)).toEqual('https://nextjs.org/test2')- experimental.adapterPath
- Configure a custom adapter for Next.js to hook into the build process with modifyConfig and buildComplete callbacks.
- allowedDevOrigins
- Use
allowedDevOriginsto configure additional origins that can request the dev server.
- Use
- assetPrefix
- Learn how to use the assetPrefix config option to configure your CDN.
- basePath
- Use
basePathto deploy a Next.js application under a sub-path of a domain.
- Use
- bundlePagesRouterDependencies
- Enable automatic dependency bundling for Pages Router
- compress
- Next.js provides gzip compression to compress rendered content and static files, it only works with the server target. Learn more about it here.
- crossOrigin
- Use the
crossOriginoption to add a crossOrigin tag on thescripttags generated bynext/scriptandnext/head.
- Use the
- deploymentId
- Configure a deployment identifier used for version skew protection and cache busting.
- devIndicators
- Optimized pages include an indicator to let you know if it’s being statically optimized. You can opt-out of it here.
- distDir
- Set a custom build directory to use instead of the default .next directory.
- env
- Learn to add and access environment variables in your Next.js application at build time.
- exportPathMap
- Customize the pages that will be exported as HTML files when using
next export.
- Customize the pages that will be exported as HTML files when using
- generateBuildId
- Configure the build id, which is used to identify the current build in which your application is being served.
- generateEtags
- Next.js will generate etags for every page by default. Learn more about how to disable etag generation here.
- headers
- Add custom HTTP headers to your Next.js app.
- httpAgentOptions
- Next.js will automatically use HTTP Keep-Alive by default. Learn more about how to disable HTTP Keep-Alive here.
- images
- Custom configuration for the next/image loader
- isolatedDevBuild
- Use isolated directories for development builds to prevent conflicts with production builds.
- onDemandEntries
- Configure how Next.js will dispose and keep in memory pages created in development.
- optimizePackageImports
- API Reference for optimizePackageImports Next.js Config Option
- output
- Next.js automatically traces which files are needed by each page to allow for easy deployment of your application. Learn how it works here.
- pageExtensions
- Extend the default page extensions used by Next.js when resolving pages in the Pages Router.
- poweredByHeader
- Next.js will add the
x-powered-byheader by default. Learn to opt-out of it here.
- Next.js will add the
- productionBrowserSourceMaps
- Enables browser source map generation during the production build.
- experimental.proxyClientMaxBodySize
- Configure the maximum request body size when using proxy.
- reactStrictMode
- The complete Next.js runtime is now Strict Mode-compliant, learn how to opt-in
- redirects
- Add redirects to your Next.js app.
- rewrites
- Add rewrites to your Next.js app.
- serverExternalPackages
- Opt-out specific dependencies from the dependency bundling enabled by
bundlePagesRouterDependencies.
- Opt-out specific dependencies from the dependency bundling enabled by
- trailingSlash
- Configure Next.js pages to resolve with or without a trailing slash.
- transpilePackages
- Automatically transpile and bundle dependencies from local packages (like monorepos) or from external dependencies (
node_modules).
- Automatically transpile and bundle dependencies from local packages (like monorepos) or from external dependencies (
- turbopack
- Configure Next.js with Turbopack-specific options
- typescript
- Next.js reports TypeScript errors by default. Learn to opt-out of this behavior here.
- urlImports
- Configure Next.js to allow importing modules from external URLs.
- useLightningcss
- Enable experimental support for Lightning CSS.
- webpack
- Learn how to customize the webpack config used by Next.js
- webVitalsAttribution
- Learn how to use the webVitalsAttribution option to pinpoint the source of Web Vitals issues.