加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
begonia 提交于 2019-06-30 18:21 . first init
let baseUrl = "/";
module.exports = {
baseUrl: baseUrl, // 根据你的实际情况更改这里
lintOnSave: true,
productionSourceMap: false,
chainWebpack: config => {
// 解决 cli3 热更新失效 https://github.com/vuejs/vue-cli/issues/1559
config.resolve.symlinks(true);
//忽略的打包文件
config.externals({
vue: "Vue",
"vue-router": "VueRouter",
vuex: "Vuex",
axios: "axios",
"element-ui": "ELEMENT"
});
},
transpileDependencies: ["avue-plugin-transfer", "avue-plugin-ueditor"],
//配置转发代理
devServer: {
disableHostCheck: true,
//port: 8080,
//proxy: 'http://zkwl.tpddns.cn:8086'
proxy: {
"/": {
target: "http://122.114.192.252:8001/",
//target: 'http://42.51.202.133:8888/',
// target: 'http://localhost:8086/',
// target: 'http://zkwl.tpddns.cn:8086/',
// target: "http://localhost:8086/",
changeOrigin: true,
ws: false,
pathRewrite: {
"^/": "/"
}
}
}
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化