Using environment variables
यह कंटेंट अभी तक आपकी भाषा में उपलब्ध नहीं है।
Astro uses Vite’s built-in support for environment variables, and lets you use any of its methods to work with them.
Note that while all environment variables are available in server-side code, only environment variables prefixed with PUBLIC_
are available in client-side code for security purposes.
In this example, PUBLIC_ANYBODY
(accessible via import.meta.env.PUBLIC_ANYBODY
) will be available in server or client code, while SECRET_PASSWORD
(accessible via import.meta.env.SECRET_PASSWORD
) will be server-side only.
.env
files are not loaded inside configuration files.
Default environment variables
Section titled Default environment variablesAstro includes a few environment variables out-of-the-box:
import.meta.env.MODE
: The mode your site is running in. This isdevelopment
when runningastro dev
andproduction
when runningastro build
.import.meta.env.PROD
:true
if your site is running in production;false
otherwise.import.meta.env.DEV
:true
if your site is running in development;false
otherwise. Always the opposite ofimport.meta.env.PROD
.import.meta.env.BASE_URL
: The base url your site is being served from. This is determined by thebase
config option.import.meta.env.SITE
: This is set to thesite
option specified in your project’sastro.config
.import.meta.env.ASSETS_PREFIX
: The prefix for Astro-generated asset links if thebuild.assetsPrefix
config option is set. This can be used to create asset links not handled by Astro.
Use them like any other environment variable.
Setting environment variables
Section titled Setting environment variables.env
files
Section titled .env filesEnvironment variables can be loaded from .env
files in your project directory.
You can also attach a mode (either production
or development
) to the filename, like .env.production
or .env.development
, which makes the environment variables only take effect in that mode.
Just create a .env
file in the project directory and add some variables to it.
For more on .env
files, see the Vite documentation.
Using the CLI
Section titled Using the CLIYou can also add environment variables as you run your project:
Getting environment variables
Section titled Getting environment variablesEnvironment variables in Astro are accessed with import.meta.env, using the import.meta feature added in ES2020, instead of process.env.
For example, use import.meta.env.PUBLIC_POKEAPI
to get the PUBLIC_POKEAPI
environment variable.
When using SSR, environment variables can be accessed at runtime based on the SSR adapter being used. With most adapters you can access environment variables with process.env
, but some adapters work differently. For the Deno adapter, you will use Deno.env.get()
. See how to access the Cloudflare runtime to handle environment variables when using the Cloudflare adapter. Astro will first check the server environment for variables, and if they don’t exist, Astro will look for them in .env files.
IntelliSense for TypeScript
Section titled IntelliSense for TypeScriptBy default, Astro provides type definition for import.meta.env
in astro/client.d.ts
.
While you can define more custom env variables in .env.[mode]
files, you may want to get TypeScript IntelliSense for user-defined env variables which are prefixed with PUBLIC_
.
To achieve this, you can create an env.d.ts
in src/
and configure ImportMetaEnv
like this: