DEV Community

Discussion on: How to load dynamical environment variables with Nuxt.js

Collapse
 
bachellerieloic profile image
Bachellerie Loic

In the getters we have access to $nuxt.
Inside $nuxt, we have access to $config.

I use : $nuxt.$config.MY_VARIABLE

And I'm able to get the var I want from my .env variables

Don't forget to add your variable to the publicRuntimeConfig object :
//nuxt.config.js
publicRuntimeConfig: {
MY_VARIABLE: process.env.MY_VARIABLE,
}

//.env
MY_VARIABLE=test-my-variable

Collapse
 
mrnaif2018 profile image
MrNaif2018

It is a Nuxt 2.13+ feature, there is an edit on the post pointing out to the docs. Thanks for showing it there nevertheless!