如何在 vue.js 中创建多个 .env

我被困在 vue.js 中,如何管理多个服务器的多个环境,如本地、开发和生产?

I am stuck in vue.js, how to manage multiple env for multiple servers like local, development and production ?

推荐答案

你可以为不同的环境创建不同的 .env 文件,比如.env.development.env.staging.env.production 并在你的 package.json 中创建这样的构建脚本 -

you can create different .env file for different environment like .env.development, .env.staging, and .env.production and in your package.json create build script like this -

"scripts": {
"build-dev": "vue-cli-service build --mode development --modern",
"build-stage": "vue-cli-service build --mode staging --modern",
"build-prod": "vue-cli-service build --mode production --modern",
}

有关详细信息,请遵循此文档 https://cli.vuejs.org/guide/mode-and-env.html

For details please follow this doc https://cli.vuejs.org/guide/mode-and-env.html

相关文章