加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
嗨喽世界 提交于 2024-07-03 10:15 . add commit
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
publicPath : "/xf-kefu/" , //浏览器url地址前缀
// outputDir : "xf-kefu" , //打包文件夹名
productionSourceMap:false, // 如何取消生成.map文件,防止反编译。
lintOnSave: false,
devServer: {
proxy: {
'/xf-engine': {
target: 'http://39.105.5.113:1040',
changeOrigin: true,
//pathRewrite: {
// '^/xf-engine': '/xf-engine'
//},
// ws:true, //用于支持webpack
// changeOrigin:true //用于控制请求头中host值
},
'/demo': {
target: 'http://localhost:5001',
pathRewrite: {
'^/demo': ''
},
// ws:true, //用于支持webpack
// changeOrigin:true //用于控制请求头中host值
}
}
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化