Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

docs(schema): update prefix for runtime config env variables #6999

Merged
merged 4 commits into from
Aug 29, 2022
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions packages/schema/src/config/_common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ export default {
* Anything under `public` and `app` will be exposed to the frontend as well.
*
* Values are automatically replaced by matching env variables at runtime, e.g. setting an environment
* variable `API_KEY=my-api-key PUBLIC_BASE_URL=/foo/` would overwrite the two values in the example below.
* variable `NUXT_API_KEY=my-api-key NUXT_PUBLIC_BASE_URL=/foo/` would overwrite the two values in the example below.
*
* @example
* ```js
Expand Down Expand Up @@ -758,5 +758,5 @@ export default {
* @type {typeof import('../src/types/config').AppConfig}
* @version 3
*/
appConfig: {},
appConfig: {},
pi0 marked this conversation as resolved.
Show resolved Hide resolved
}