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