Hi,
I’m using @quasar/quasar-app-extension-dotenv
for loading environment variables during the development from .env
file on my localhost.
In the production I’m hosting the project on Netlify and when I set the environment variables in the Netlify dashboard it is undefined
during the program run.
My quasar.extensions.json
looks like this:
{
"@quasar/dotenv": {
"env_development": ".env",
"env_production": ".env",
"common_root_object": "none",
"create_env_files": false,
"add_env_to_gitignore": false
}
}
Any ideas how to load variables from server variables?
Thanks