1 Star 0 Fork 0

Jeamn/ vue3-admin-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
chenjingming 提交于 2021-06-18 16:16 . chore: 配置vue.config
'use strict'
// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require('path')
const resolve = dir => path.join(__dirname, dir)
function chainWebpack(config) {
// set svg-sprite-loader
config.module
.rule('svg') // 在已有的svg loader配置中 排除掉对src/icons里svg进行转换
.exclude.add(resolve('src/icons'))
.end()
// symbolId的意义 https://segmentfault.com/a/1190000015367490
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
// 设置symbolId名称格式 use元素通过symbolId寻找svg图标
// <svg>
// <use xlink:href="#symbolId"></use>
// </svg>
.options({
symbolId: 'icon-[name]'
})
.end()
}
module.exports = {
chainWebpack,
devServer: {
port: 8080,
open: true,
overlay: {
warnings: false,
errors: true
},
proxy: {
'/dev-api': {
target: 'http://localhost:3003',
ws: true,
changeOrigin: true,
pathRewrite: { '^/dev-api': '/api' }
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jeamnchan/vue3-admin-client.git
git@gitee.com:jeamnchan/vue3-admin-client.git
jeamnchan
vue3-admin-client
vue3-admin-client
master

搜索帮助