1 Star 0 Fork 2

AlfaLee/cj-master-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 2.15 KB
一键复制 编辑 原始数据 按行查看 历史
cjlang 提交于 2022-09-11 12:03 . 代码变量重命名
/*
* @Author: cjlang [email protected]
* @Date: 2022-05-18 17:40:09
* @LastEditors: cjlang [email protected]
* @LastEditTime: 2022-09-11 09:48:25
* @FilePath: /cj-master-ui/vue.config.js
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
const webpack = require('webpack')
const path = require('path')
function resolve (dir) {
return path.join(__dirname, dir)
}
// 换肤插件
const ThemeColorReplacer = require('webpack-theme-color-replacer')
const forElementUI = require('webpack-theme-color-replacer/forElementUI')
module.exports = {
publicPath: '/web',
outputDir: 'dist',
assetsDir: 'static',
lintOnSave: false,
productionSourceMap: false,
devServer: {
port: 9091,
hotOnly: false,
disableHostCheck: true,
overlay: {
warnings: false,
errors: true
},
proxy: {
//axios跨域改造 by zhengkai.blog.csdn.net
'/api': {
target:'http://localhost:9090/service/', // 你请求的第三方接口
changeOrigin:true, // 在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
pathRewrite:{ // 路径重写,
'^/api': '' // 替换target中的请求地址,也就是说/api=/target,请求target这个地址的时候直接写成/api即可。
}
}
}
},
css: {
loaderOptions: {
sass: {
data: `@import "~@/assets/style/globalvar.scss";@import "~@/assets/style/globalstyle.scss";`
}
}
},
configureWebpack: {
devtool: 'source-map',
name: ' CJ-WEB',
resolve: {
alias: {
'@': resolve('src'),
}
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
jquery: 'jquery',
'window.jQuery': 'jquery'
}),
new ThemeColorReplacer({
fileName: 'theme-colors.[contenthash:8].css',
matchColors: forElementUI.getElementUISeries('#409EFF'),
changeSelector: forElementUI.changeSelector
})
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/alfalee_admin/cj-master-ui.git
[email protected]:alfalee_admin/cj-master-ui.git
alfalee_admin
cj-master-ui
cj-master-ui
master

搜索帮助