2 Star 0 Fork 0

马乙华/xwjx-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.91 KB
一键复制 编辑 原始数据 按行查看 历史
sunshio 提交于 2021-03-29 15:40 . 1
// 基础路径 注意发布之前要先修改这里
let publicPath = process.env.VUE_APP_PUBLIC_PATH || '/'
if ("development" === process.env.NODE_ENV) {
publicPath = "/"
} else if ("production" === process.env.NODE_ENV) {
publicPath = './'
}
const path = require('path');
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
publicPath: publicPath,
lintOnSave: true,
devServer: {
publicPath
},
configureWebpack: config => {
const configNew = {}
if (process.env.NODE_ENV === 'production') {
configNew.externals = {}
}
if (process.env.NODE_ENV === 'development') {
configNew.devServer = {
disableHostCheck: true,
proxy: {
'/xwjxApi/upload/form': {
target: 'http://192.168.1.33:8888',
ws: true,
pathRewrite: {
'^/xwjxApi': '/xwjxApi'
}
},
'/xwjxApi/ueditor/': {
target: 'http://192.168.1.33:8888',
ws: true,
pathRewrite: {
'^/xwjxApi': '/xwjxApi'
}
},
'/xwjxApi/ueditor/jsp/': {
target: 'http://192.168.1.33:8888',
ws: true,
pathRewrite: {
'^/xwjxApi': '/xwjxApi'
}
},
'/xwjxApi': {
target: 'http://192.168.1.33:8888',
ws: true,
pathRewrite: {
'^/xwjxApi': '/xwjxApi'
}
}
}
}
}
return configNew
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mayihua/xwjx-vue.git
git@gitee.com:mayihua/xwjx-vue.git
mayihua
xwjx-vue
xwjx-vue
master

搜索帮助