Ai
1 Star 0 Fork 0

黑鱼村王师傅/mini-admin-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
黑鱼村王师傅 提交于 2020-03-30 14:16 +08:00 . 清理路由配置
const path = require('path');
const webpack = require('webpack');
const createThemeColorReplacerPlugin = require('./src/core/setting/PluginConfig');
const vueConfig = {
configureWebpack: {
plugins: [
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
]
},
//处理SVG资源加载
chainWebpack: (config) => {
const svgRule = config.module.rule('svg');
svgRule.uses.clear();
svgRule
.oneOf('inline')
.resourceQuery(/inline/)
.use('vue-svg-icon-loader')
.loader('vue-svg-icon-loader')
.end()
.end()
.oneOf('external')
.use('file-loader')
.loader('file-loader')
.options({
name: 'assets/image/[name].[hash:8].[ext]'
})
},
css: {
loaderOptions: {
less: {
modifyVars: {
// less vars,customize ant design theme
// 'primary-color': '#F5222D',
// 'link-color': '#F5222D',
'border-radius-base': '2px'
},
// DO NOT REMOVE THIS LINE
javascriptEnabled: true
}
}
},
devServer: {
// development server port 8000
port: 8099
// If you want to turn on the proxy, please remove the mockjs /src/main.jsL11
// proxy: {
// '/api': {
// target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro',
// ws: false,
// changeOrigin: true
// }
// }
},
productionSourceMap: false,
lintOnSave: undefined,
transpileDependencies: []
};
vueConfig.configureWebpack.plugins.push(createThemeColorReplacerPlugin());
module.exports = vueConfig;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/wang_yong_ji/mini-admin-vue.git
git@gitee.com:wang_yong_ji/mini-admin-vue.git
wang_yong_ji
mini-admin-vue
mini-admin-vue
master

搜索帮助