加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 755 Bytes
一键复制 编辑 原始数据 按行查看 历史
ex_lanlj2 提交于 2021-07-06 09:56 . 本地配置代理
/*
* @Descripttion:
* @Author: ''
* @Date: 2021-03-05 16:16:53
* @LastEditors: ''
* @LastEditTime: 2021-03-20 14:03:59
*/
const config = require('./src/config/config.js')
module.exports = {
lintOnSave: false,
productionSourceMap:false,
publicPath:'./',
transpileDependencies:[],
devServer: {
host:"localhost",
proxy: {
"/app": {
target: config.webpackUrl, //代理请求地址
secure: true,
changeOrigin: true,
pathRewrite: {
"^/app": "/app",
}
}
}
},
chainWebpack: (config) => {
config.resolve.symlinks(true) // 修复热更新失效
},
configureWebpack:config =>{
const plugins = []
config.plugins = [...config.plugins, ...plugins]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化