I have to set node environment variables using cross-env
in package.json but the values are in a .env
file.
I've tried the following formats but none has worked.
cross-env API_KEY=%API_KEY% && ...
cross-env API_KEY=$API_KEY && ...
cross-env %API_KEY% && ...
cross-env is used to set environment variables inline when running node commands.
However when populating environment variables from .env files you'll need to use dotenv or similar.
It's common to have a separate .env file for each environment (.env.development, .env.production...). To configure this with dotenv you need to run
dotenv.config
at the root of your project, to pick the right .env file.