加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
刘国伟 提交于 2023-01-04 14:41 . webpack优化 request封装
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
lintOnSave: false,
configureWebpack: {
name: 'vue',
devServer: {
port:8080,
proxy: {
'/api_other': {
target:'http://49.234.222.178:8888',
ws:true,
secure:false,
changeOrigin: true, //是否开启跨域
pathRewrite: {
'^/api_other': '' //让路径以/api开头的字段为空
}
}
}
},
resolve: {
alias: {
'@': resolve('src'),
}
},
},
pluginOptions: {
"style-resources-loader": {
preProcessor: "less",
patterns: [
// 存放less变量文件的路径
path.resolve(__dirname, "./src/assets/style/base.less")
]
}
},
css: {
loaderOptions: {
less: {
lessOptions: {
modifyVars: {
'primary-color': '#ec6800'
},
javascriptEnabled: true,
},
}
},
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化