{"pageProps":{"routes":[{"title":"Documentation","heading":true,"routes":[{"title":"Getting Started","path":"/docs/getting-started.md"},{"title":"Basic Features","open":true,"routes":[{"title":"Pages","path":"/docs/basic-features/pages.md"},{"title":"Data fetching","path":"/docs/basic-features/data-fetching.md"},{"title":"Built-in CSS Support","path":"/docs/basic-features/built-in-css-support.md"},{"title":"Static File Serving","path":"/docs/basic-features/static-file-serving.md"},{"title":"TypeScript","path":"/docs/basic-features/typescript.md"},{"title":"Environment Variables","path":"/docs/basic-features/environment-variables.md"}]},{"title":"Routing","routes":[{"title":"Introduction","path":"/docs/routing/introduction.md"},{"title":"Dynamic Routes","path":"/docs/routing/dynamic-routes.md"},{"title":"Imperatively","path":"/docs/routing/imperatively.md"},{"title":"Shallow Routing","path":"/docs/routing/shallow-routing.md"}]},{"title":"API Routes","routes":[{"title":"Introduction","path":"/docs/api-routes/introduction.md"},{"title":"Dynamic API Routes","path":"/docs/api-routes/dynamic-api-routes.md"},{"title":"API Middlewares","path":"/docs/api-routes/api-middlewares.md"},{"title":"Response Helpers","path":"/docs/api-routes/response-helpers.md"}]},{"title":"Deployment","path":"/docs/deployment.md"},{"title":"Advanced Features","routes":[{"title":"Preview Mode","path":"/docs/advanced-features/preview-mode.md"},{"title":"Dynamic Import","path":"/docs/advanced-features/dynamic-import.md"},{"title":"Automatic Static Optimization","path":"/docs/advanced-features/automatic-static-optimization.md"},{"title":"Static HTML Export","path":"/docs/advanced-features/static-html-export.md"},{"title":"Absolute Imports and Module Path Aliases","path":"/docs/advanced-features/module-path-aliases.md"},{"title":"AMP Support","routes":[{"title":"Introduction","path":"/docs/advanced-features/amp-support/introduction.md"},{"title":"Adding AMP Components","path":"/docs/advanced-features/amp-support/adding-amp-components.md"},{"title":"AMP Validation","path":"/docs/advanced-features/amp-support/amp-validation.md"},{"title":"AMP in Static HTML export","path":"/docs/advanced-features/amp-support/amp-in-static-html-export.md"},{"title":"TypeScript","path":"/docs/advanced-features/amp-support/typescript.md"}]},{"title":"Customizing Babel Config","path":"/docs/advanced-features/customizing-babel-config.md"},{"title":"Customizing PostCSS Config","path":"/docs/advanced-features/customizing-postcss-config.md"},{"title":"Custom Server","path":"/docs/advanced-features/custom-server.md"},{"title":"Custom `App`","path":"/docs/advanced-features/custom-app.md"},{"title":"Custom `Document`","path":"/docs/advanced-features/custom-document.md"},{"title":"Custom Error Page","path":"/docs/advanced-features/custom-error-page.md"},{"title":"`src` Directory","path":"/docs/advanced-features/src-directory.md"},{"title":"Multi Zones","path":"/docs/advanced-features/multi-zones.md"},{"title":"Measuring performance","path":"/docs/advanced-features/measuring-performance.md"}]},{"title":"Upgrade Guide","path":"/docs/upgrading.md"},{"title":"FAQ","path":"/docs/faq.md"}]},{"title":"API Reference","heading":true,"routes":[{"title":"CLI","path":"/docs/api-reference/cli.md"},{"title":"next/router","path":"/docs/api-reference/next/router.md"},{"title":"next/link","path":"/docs/api-reference/next/link.md"},{"title":"next/head","path":"/docs/api-reference/next/head.md"},{"title":"next/amp","path":"/docs/api-reference/next/amp.md"},{"title":"Data Fetching","routes":[{"title":"getInitialProps","path":"/docs/api-reference/data-fetching/getInitialProps.md"}]},{"title":"next.config.js","routes":[{"title":"Introduction","path":"/docs/api-reference/next.config.js/introduction.md"},{"title":"Environment Variables","path":"/docs/api-reference/next.config.js/environment-variables.md"},{"title":"Custom Page Extensions","path":"/docs/api-reference/next.config.js/custom-page-extensions.md"},{"title":"CDN Support with Asset Prefix","path":"/docs/api-reference/next.config.js/cdn-support-with-asset-prefix.md"},{"title":"Build Target","path":"/docs/api-reference/next.config.js/build-target.md"},{"title":"Custom Webpack Config","path":"/docs/api-reference/next.config.js/custom-webpack-config.md"},{"title":"Compression","path":"/docs/api-reference/next.config.js/compression.md"},{"title":"Static Optimization Indicator","path":"/docs/api-reference/next.config.js/static-optimization-indicator.md"},{"title":"Runtime Configuration","path":"/docs/api-reference/next.config.js/runtime-configuration.md"},{"title":"Disabling x-powered-by","path":"/docs/api-reference/next.config.js/disabling-x-powered-by.md"},{"title":"Disabling ETag Generation","path":"/docs/api-reference/next.config.js/disabling-etag-generation.md"},{"title":"Setting a custom build directory","path":"/docs/api-reference/next.config.js/setting-a-custom-build-directory.md"},{"title":"Configuring the Build ID","path":"/docs/api-reference/next.config.js/configuring-the-build-id.md"},{"title":"Configuring onDemandEntries","path":"/docs/api-reference/next.config.js/configuring-onDemandEntries.md"},{"title":"Ignoring TypeScript Errors","path":"/docs/api-reference/next.config.js/ignoring-typescript-errors.md"},{"title":"exportPathMap","path":"/docs/api-reference/next.config.js/exportPathMap.md"}]}]}],"data":{"description":"Learn to add and access environment variables in your Next.js application."},"route":{"title":"Environment Variables","path":"/docs/basic-features/environment-variables.md"},"html":"
\n\nThis document is for Next.js versions 9.4 and up. If you’re using an older version of Next.js, refer to Environment Variables in next.config.js.
\n
Next.js comes with built-in support for environment variables, which allows you to do the following:
\n\nNext.js will inline any environment variable that starts with NEXT_PUBLIC_
in your application. Inlining means replacing the variable with the value. For example, the following page:
export default function Page() {\n return <h1>The public value is: {process.env.NEXT_PUBLIC_EXAMPLE_KEY}</h1>\n}\n
\nWill end up being:
\nexport default function Page() {\n return <h1>The public value is: {'my-value'}</h1>\n}\n
\nNext.js replaced process.env.NEXT_PUBLIC_EXAMPLE_KEY
with its value, that in this case is 'my-value'
.
You can use the shell or any other tool that runs before the Next.js CLI to add environment variables. For example, using bash:
\nNEXT_PUBLIC_EXAMPLE_KEY=my-value npx next dev\n
\nOr using cross-env for Windows and Unix support:
\nnpx cross-env NEXT_PUBLIC_EXAMPLE_KEY=my-value next dev\n
\nprocess.env
variables won't work due to the limitations of webpack's DefinePlugin.NEXT_PUBLIC_
prefix for them. Instead, expose the variables using .env
.Next.js allows you to expose variables using an environment variables file (.env
), with included support for multiple environments. It works like this:
.env
- Contains environment variables for all environments.env.local
- Local variable overrides for all environments.env.[environment]
- Environment variables for one environment. For example: .env.development
.env.[environment].local
- Local variable overrides for one environment. For example: .env.development.local
\n\nNote:
\n.env
files should be included in your repository, and.env*.local
should be in.gitignore
, as those files are intended to be ignored. Consider.local
files as a good place for secrets, and non-local files as a good place for defaults.
The supported environments are development
, production
and test
. The environment is selected in the following way:
next dev
uses development
next build
and next start
use production
If the same environment variable is defined multiple times, the priority of which variable to use is decided in the following order:
\nMY_KEY=value next dev
.env.[environment].local
.env.[environment]
.env.local
.env
For example, consider the file .env.local
with the following content:
API_KEY='my-secret-api-key'\nNEXT_PUBLIC_APP_LOCALE='en-us'\n
\nAnd the following page:
\nexport default function Page() {\n return <h1>The locale is set to: {process.env.NEXT_PUBLIC_APP_LOCALE}</h1>\n}\n\nexport async function getStaticProps() {\n const db = await myDB(process.env.API_KEY)\n // ...\n}\n
\nprocess.env.NEXT_PUBLIC_APP_LOCALE
will be replaced with 'en-us'
in the build output. This is because variables that start with NEXT_PUBLIC_
will be inlined at build time.
process.env.API_KEY
will be a variable with 'my-secret-api-key'
at build time and runtime, but the build output will not contain this key. This is because process.env.API_KEY
is only used by getStaticProps
which runs only on the server — and only the props returned by getStaticProps
are included in the client build. Same goes for our other data fetching methods.
Now, if you add a .env
file like this one:
API_KEY='default-api-key'\nCLIENT_KEY='default-client-key'\nNEXT_PUBLIC_APP_LOCALE='en-us'\n
\nBoth API_KEY
and NEXT_PUBLIC_APP_LOCALE
will be ignored as .env.local
has a higher priority, but CLIENT_KEY
will become available.