vue3.x学习笔记-1、vue.config.js配置项说明(部分,不完整)

module.exports = {
  //路由的根路径,
    publicPath: '/fast',
    //打包后形成的文件夹名称
    outputDir:'fast',
    productionSourceMap: false, // 设置为false,部署后控制台看不到.vue文件了
    // 配置webpack打包
    configureWebpack: (config) => {
    // 取消console打印    
    config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
  },
  //反向代理
  devServer:{
    proxy:{
      "/arcgis":{
        target: 'http://10.0.0.121:6080/arcgis/', //这里后台的地址模拟的;应该填写你们真实的后台接口
                ws: true,
                changOrigin: true, //允许跨域
                pathRewrite: {
                    '^/arcgis': 'http://10.0.0.121:6080/arcgis/' //请求的时候使用这个api就可以
                }
      }
    }
  },
  
}
上一篇:ArcGIS制图技巧—边框的选择


下一篇:ArcGIS中国地表覆盖数据GlobeLand30预处理(批量投影、拼接、掩膜提取)附成品下载