From 2d071eb48c12bf605b999a6fccedec38531128b0 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 29 Aug 2022 10:47:02 +0100 Subject: [PATCH] docs(schema): update prefix for runtime config env variables (#6999) --- packages/schema/src/config/_common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/schema/src/config/_common.ts b/packages/schema/src/config/_common.ts index d6067f441be..da3dbf43a8d 100644 --- a/packages/schema/src/config/_common.ts +++ b/packages/schema/src/config/_common.ts @@ -708,7 +708,7 @@ export default defineUntypedSchema({ * 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