码迷,mamicode.com
首页 > 其他好文 > 详细

Vue 项目环境变量

时间:2020-02-10 00:15:05      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:java   一个   roc   vue   unit   proc   vue-cli   server   json   

Vue 项目环境变量

环境变量:

.env                # 在所有的环境中被载入
.env.local          # 在所有的环境中被载入,但会被 git 忽略
.env.[mode]         # 只在指定的模式中被载入
.env.[mode].local   # 只在指定的模式中被载入,但会被 git 忽略
一个环境文件只包含环境变量的“键=值”对:

模式

  • development 模式用于 vue-cli-service serve
  • production 模式用于 vue-cli-service build 和 vue-cli-service test:e2e
  • test 模式用于 vue-cli-service test:unit

示例

.env.production文件:

# just a flag
ENV = 'production'

# base api
VUE_APP_BASE_API = '/prod-api'

  1. 使用
    vue.conf.js构建文件:
proxy: {
      // change xxx-api/login => mock/login
      // detail: https://cli.vuejs.org/config/#devserver-proxy
      [process.env.VUE_APP_BASE_API]: {
        target: `http://localhost:${port}/mock`,
        changeOrigin: true,
        pathRewrite: {
          ['^' + process.env.VUE_APP_BASE_API]: ''
        }
      }
    },

2、客户端使用

// create an axios instance
const service = axios.create({
  baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url
  withCredentials: true, // send cookies when cross-domain requests
  timeout: 5000 // request timeout
})

注意:
只有以 VUE_APP_ 开头的变量会被 webpack.DefinePlugin 静态嵌入到客户端侧的包中。

Vue 项目环境变量

标签:java   一个   roc   vue   unit   proc   vue-cli   server   json   

原文地址:https://www.cnblogs.com/mengfangui/p/12289297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!