1、vue中的环境变量调整
假如需要添加第三种模式的时候,或者在开发过程中需要添加环境变量的时候,那么就需要做如下配置
先在根目录下添加.env.自定义名字,并且里面的内容模式可以如上图进行配置
"scripts": { "dev": "vue-cli-service serve --mode unit", "serve": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint" },
在package.json文件中添加dev模式的,并且--mode后指定需要指定的模式
这需要就可以在项目中使用process.env进行访问