[Vuejs]-Enviroment variables not available in main.js

0๐Ÿ‘

Only variables that start with VUE_APP_ will be statically embedded into the client bundle with webpack.DefinePlugin. You can access them in your application code:

https://cli.vuejs.org/guide/mode-and-env.html#using-env-variables-in-client-side-code

Leave a comment