代码拉取完成,页面将自动刷新
const path = require('path')
const { includes } = require('core-js/internals/array-includes')
function resolve (dir) {
return path.join(__dirname, dir)
}
// https://cli.vuejs.org/zh/guide/webpack.html#%E7%AE%80%E5%8D%95%E7%9A%84%E9%85%8D%E7%BD%AE%E6%96%B9%E5%BC%8F
module.exports = {
// webpack devServe 提供了代理功能, 该代理可以把所有请求到当前服务中的请求,转发(代理)到另一个服务器上
devServer: {
// 配置反向代理
proxy: {
// 当地址中有/api的时候会触发代理机制
'/api': {
// 要代理的服务器地址 这里不用写 api
target: 'https://api.imooc-admin.lgdsunday.club/',
changeOrigin: true // 是否跨域
}
}
},
chainWebpack (config) {
// 设置 svg-sprite-loader
config.module
.rule('svg')
.exclude.add(resolve('src/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
// 创建一个新的规则,用于处理 element-plus 2 的错误
config.module
.rule('element-plus-2')
.test(/\.mjs$/)
.type('javascript/auto')
.include.add(/node_modules/)
.end()
},
configureWebpack: {
resolve: {
fallback: {
path: require.resolve('path-browserify')
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。