Loads environment variables from the .env files. NODE_ENV has to be set in the environment and will not be picked up from there.
.env
NODE_ENV
If NODE_ENV is not set, it will default to development.
development
Environment variables are loaded in the following order:
.env.development.local
.env.development
.env.local
Loads environment variables from the
.envfiles.NODE_ENVhas to be set in the environment and will not be picked up from there.If
NODE_ENVis not set, it will default todevelopment.Environment variables are loaded in the following order:
.env.development.local.env.development.env.local.env