From bec01c378a299673390d54c22afbf3b23c4a9c4a Mon Sep 17 00:00:00 2001 From: Andrew Luca <1881266+iamandrewluca@users.noreply.github.com> Date: Tue, 30 May 2023 19:30:58 +0300 Subject: [PATCH] docs: adjust `env` property to match `runtimeConfig` (#21265) --- docs/3.api/1.composables/use-runtime-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/3.api/1.composables/use-runtime-config.md b/docs/3.api/1.composables/use-runtime-config.md index 34cfb4c19e..af32bfabe5 100644 --- a/docs/3.api/1.composables/use-runtime-config.md +++ b/docs/3.api/1.composables/use-runtime-config.md @@ -77,7 +77,7 @@ It is possible to update runtime config values using a matching environment vari We can set the environment variables inside the `.env` file to make them accessible during **development** and **build/generate**. ``` [.env] -NUXT_PUBLIC_API_BASE_URL = "https://api.localhost:5555" +NUXT_PUBLIC_API_BASE = "https://api.localhost:5555" NUXT_API_SECRET = "123" ```