Environment Variables and Modes
Farm
distinguishes between development
and production
environments through process.env.NODE_ENV
.
In different environments, environment variables are replaced statically, so use static constants to represent environment variables instead of dynamic expressions.
.env
file
Farm
uses dotenv
to load your additional environment variables, such as .env
files. By default .env
file are loaded from root
, you can use envDir
to customize.
Farm
loads the file .env
via dotenv, and loads it into process.env
and finally injects it into define.
In order to ensure the security of the client, preventing the environment variables in the current system from being exposed to the client Farm
will only identify some important environment variables that start with FARM_
、VITE_
(In order to better compatible with vite and its ecological environment).
Farm
expands environment variables through dotenv-expand. For development only envs use .env.development
, for production only envs use .env.production
, for custom mode passed by --mode <stage>
, load from .env.<stage>
file.
- If you want to customize the directory to load
.env
file, you can configureenvDir
. - If you want to customize the prefix of env variables which are injected to
define
, you can configureenvPrefix
.
envPrefix
- default value:
FARM_
、VITE_
Customize the prefix of the env
variable by configuring envPrefix
. Env variables start with envPrefix
will be injected into define automatically. For example, in the .env
file:
Then FARM_CUSTOM_VERSION
will be injected, but not APP_VERSION
, in your business code:
FARM_CUSTOM_VERSION
will be replaced by '1.0.0'
automatically.
envDir
- default value:
<root>
The directory to load env file
. By default Farm load env file
from root.
For above config example, Farm will load .env
, .env.development
, etc from <root>/env
dir.