Skip to content

nicholaschiang/env-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Environment Variables Demo

This is a repro demonstrating that Next.js replaced the process.env.NODE_ENV with production no matter what is set during build (even if it's set to test which is documented as a supported env).

To reproduce the issue, do the following:

  1. Install dependencies:
$ yarn install
  1. Build the app using the test environment:
$ yarn test:build
  1. Start the app using the test environment:
$ yarn test:start
  1. Visit the API route at http://localhost:3000/api/env and notice that the JSON response contains production instead of test. This is because Next.js hardcodes (i.e. replaces) the process.env.NODE_ENV variable to production when running next build. This is not ideal when you want to use the NODE_ENV variable to trigger certain behavior during tests (e.g. accessing different Algolia search indexes).

Getting Started

This is a Next.js project bootstrapped with create-next-app.

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

About

Repro for setting NODE_ENV to test during Next.js builds.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published