mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
ee0b90bf36
Co-authored-by: Damian <48835293+DamianGlowala@users.noreply.github.com>
1.4 KiB
1.4 KiB
head.title | head.titleTemplate |
---|---|
Nuxt 2 to Nuxt 3: Runtime Config |
Runtime Config
If you wish to reference environment variables within your Nuxt 3 app, you will need to use runtime config.
When referencing these variables within your components, you will have to use the useRuntimeConfig
composable in your setup method (or Nuxt plugin). In the server/
portion of your app, you can use useRuntimeConfig
without any import.
Read more about runtime config.
Migration
- Add any environment variables that you use in your app to the
runtimeConfig
property of thenuxt.config
file. - Migrate
process.env
touseRuntimeConfig
throughout the Vue part of your app.
Example
::code-group
import { defineNuxtConfig } from 'nuxt'
export default defineNuxtConfig({
runtimeConfig: {
secretKey: '', // variable that can only be accessed on the server side
public: {
BASE_URL: process.env.BASE_URL || 'https://nuxtjs.org' // variable that can also be accessed on the client side
}
},
})
<script setup>
const config = useRuntimeConfig().public
// instead of process.env.BASE_URL you will now access config.BASE_URL
</script>
const config = useRuntimeConfig().public
export default (req, res) => {
// you can now access config.BASE_URL
return {
baseURL: config.BASE_URL
}
}
::