From 04feb35ad2a8c37467daa3c265e161a63ffbb290 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 12 Sep 2022 11:31:11 +0100 Subject: [PATCH] docs: fix typo --- docs/content/3.api/1.composables/use-runtime-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/3.api/1.composables/use-runtime-config.md b/docs/content/3.api/1.composables/use-runtime-config.md index 578f9116b4a..94700ee99ff 100644 --- a/docs/content/3.api/1.composables/use-runtime-config.md +++ b/docs/content/3.api/1.composables/use-runtime-config.md @@ -78,7 +78,7 @@ We can set the environment variables inside the `.env` file to make them accessi ``` [.env] NUXT_PUBLIC_API_BASE_URL = "https://api.localhost:5555" -NUXT_APP_SECRET = "123" +NUXT_API_SECRET = "123" ``` ::alert{type=info}