开发环境和正式环境等不同的环境使用不同的环境地址,为了避免来回切换地址我们可以使用环境变量配置:添加.env
文件。
添加.env.development
文件(开发环境变量),文件内容如下:
NODE_ENV = 'development'
VUE_APP_URL = 'http://xxx.xxx.com/'
添加.env.production
文件(正式环境变量),文件内容如下:
NODE_ENV = 'production'
VUE_APP_URL = 'http://xxx.xxx.com/'
ps:当你运行serve
时,会使用开发环境.env.development
文件中的地址;当你运行build
时,会使用正式环境.env.production
文件中的地址。