Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: set dynamic env variables in config file #19136

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/config/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,21 @@ export default defineConfig(({ mode }) => {
}
})
```

## Setting Environment Variables inside Config file

Use the define block in Vite to inject global constants or environment variables accessible within the application at build time. While `.env` files should always be used for static variables, dynamic values like the latest Git commit hash can also be set.

```js twoslash
import { defineConfig } from 'vite'
import { execSync } from 'child_process'

export default defineConfig({
define: {
// Make the commit hash available as an env varaible in your app
'import.meta.env.VITE_CODE_VERSION': JSON.stringify(
execSync('git rev-parse HEAD').toString().trim(),
),
},
})
```
Loading