docs: adjust env property to match runtimeConfig (#21265)

This commit is contained in:
Andrew Luca 2023-05-30 19:30:58 +03:00 committed by GitHub
parent c9adf700a4
commit bec01c378a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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**. We can set the environment variables inside the `.env` file to make them accessible during **development** and **build/generate**.
``` [.env] ``` [.env]
NUXT_PUBLIC_API_BASE_URL = "https://api.localhost:5555" NUXT_PUBLIC_API_BASE = "https://api.localhost:5555"
NUXT_API_SECRET = "123" NUXT_API_SECRET = "123"
``` ```