I can't read the value in .env with the latest VUE cli3. Is there any reason?

clipboard.png

problem description

the environmental background of the problems and what methods you have tried

related codes

/ / Please paste the code text below (do not replace the code with pictures)

what result do you expect? What is the error message actually seen?

Feb.12,2022

only variables that begin with VUE_APP_ are statically embedded in the client side package by webpack.DefinePlugin, for example, you want to write this as VUE_APP_API_BASE_URL = test123


you can override the default mode for the command line by passing the -- mode option parameter. For example, if you want to use development environment variables in build commands, add:

to your package.json script
"dev-build": "vue-cli-service build --mode development",

so you can get the variable

Menu