.env
What to locate in .env
file
.env.local
instead.# server_only_variable_from_env_local .env.local # server_only_development_variable .env.development # server_only_production_variable .env.production PRODUCTION_ENV_VARIABLE="server_only_production_variable" NEXT_PUBLIC_PRODUCTION_ENV_VARIABLE="public_production_variable"
.env
Definition in the .env
file
KEY_NAME = secret_value;
Consuming the .env
value in the codebase
envVar.key_name = process.env.KEY_NAME || envVar.key_name;
Missing .env
results in undefined