没有前缀的 Vue cli 环境 VUE_APP
Vue cli env without prefix VUE_APP
可以在没有 de 前缀的情况下在 vue cli 中使用 env VUE_APP,
.env
中的示例没有前缀 VUE_APP
:
API_MESSAGE_URL = localhost:5000/v1
您可以随意命名您的 ENV 变量,但是...
Note that only NODE_ENV, BASE_URL, and variables that start with VUE_APP_ will be statically embedded into the client bundle with webpack.DefinePlugin. It is to avoid accidentally exposing a private key on the machine that could have the same name
可以在没有 de 前缀的情况下在 vue cli 中使用 env VUE_APP,
.env
中的示例没有前缀 VUE_APP
:
API_MESSAGE_URL = localhost:5000/v1
您可以随意命名您的 ENV 变量,但是...
Note that only NODE_ENV, BASE_URL, and variables that start with VUE_APP_ will be statically embedded into the client bundle with webpack.DefinePlugin. It is to avoid accidentally exposing a private key on the machine that could have the same name