vue.config.js配置

一、根目录新建vue.config.js

module.exports = {
  publicPath: process.env.NODE_ENV === 'production'
    ? '/production-sub-path/'
    : '/', // 输出文件目录
  outputDir: 'dist', // eslint-loader 是否在保存的时候检查
  lintOnSave: true, // use the full build with in-browser compiler? // https://vuejs.org/v2/guide/installation.html#Runtime-Compiler-vs-Runtime-only
  configureWebpack: {
    // provide the app's title in webpack's name field, so that
    // it can be accessed in index.html to inject the correct title.
    devtool: 'source-map' // 配置开发者环境的sourceMap用于断点调试
  },
  productionSourceMap: false, // css相关配置
  css: {
    // 是否使用css分离插件 ExtractTextPlugin
    extract: process.env.NODE_ENV === 'production', // 开启 CSS source maps?
    sourceMap: false, // css预设器配置项
    loaderOptions: {}, // 启用 CSS modules for all css / pre-processor files.
    modules: false
  },
  devServer: {
    open: false,
    host: '0.0.0.0',
    port: 8080,
    hot: true,
    https: false,
    proxy: {
      '/api': {
        target: 'https://192.168.4.59:5000/api', // 接口域名
        changeOrigin: true, // 是否跨域// 开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
        ws: true, // 是否代理 websockets
        // secure: true, // 是否https接口
        pathRewrite: { // 路径重置
          '^/api': ''
        }
      },
      '/test': {
        target: 'https://192.168.4.59:5000/'
      },
      '/Resource': {
        target: 'https://192.168.4.59:5000/Resource'
      }
    }
  }
}

二、.env.development

NODE_ENV='development'
VUE_APP_NODE_ENV='development'
VUE_APP_API_URL='https://192.168.4.59:5000'
VUE_APP_HOST='192.168.4.59'
VUE_APP_PUBLISH_NUMBER='d1.0.0.0000'
VUE_APP_BASE_API = '/api'

三、.env.production

NODE_ENV='production'
VUE_APP_NODE_ENV='production'
VUE_APP_API_URL='https://192.168.4.59:5000'
VUE_APP_HOST='192.168.4.59'
VUE_APP_PUBLISH_NUMBER='v1.0.704'
VUE_APP_BASE_API = '/api'

四、调用

axios.post(process.env.VUE_APP_BASE_API + '/user/Login', {
          userName: data.userName,
          password: data.password
        })

上一篇:小程序构建npm问题


下一篇:基于VirtualBox虚拟机安装Ubuntu教程