2021-03-03 15:06:52 +08:00
|
|
|
'use strict'
|
|
|
|
const path = require('path')
|
|
|
|
const defaultSettings = require('./src/settings.js')
|
|
|
|
|
|
|
|
function resolve(dir) {
|
|
|
|
return path.join(__dirname, dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
const name = defaultSettings.title || 'vue Admin Template' // page title
|
|
|
|
|
|
|
|
const port = process.env.port || process.env.npm_config_port || 9528 // dev port
|
|
|
|
module.exports = {
|
2021-03-08 13:45:22 +08:00
|
|
|
productionSourceMap: true,
|
|
|
|
// 使用mock-server
|
2021-03-03 15:06:52 +08:00
|
|
|
devServer: {
|
|
|
|
port: port,
|
2021-05-12 16:19:41 +08:00
|
|
|
proxy: {
|
|
|
|
'^(?!/login)': {
|
|
|
|
target: 'http://localhost:8081/',
|
|
|
|
ws: false
|
|
|
|
}
|
|
|
|
},
|
2021-03-03 15:06:52 +08:00
|
|
|
open: true,
|
|
|
|
overlay: {
|
|
|
|
warnings: false,
|
|
|
|
errors: true
|
|
|
|
},
|
|
|
|
before: require('./mock/mock-server.js')
|
|
|
|
},
|
2021-03-25 18:58:05 +08:00
|
|
|
pages: {
|
|
|
|
index: {
|
|
|
|
entry: 'src/main.js',
|
|
|
|
template: 'public/index.html',
|
|
|
|
filename: 'index.html'
|
|
|
|
},
|
|
|
|
link: {
|
|
|
|
entry: 'src/link/link.js',
|
|
|
|
template: 'public/link.html',
|
|
|
|
filename: 'link.html'
|
|
|
|
}
|
|
|
|
},
|
2021-03-03 15:06:52 +08:00
|
|
|
configureWebpack: {
|
|
|
|
name: name,
|
2021-03-08 13:45:22 +08:00
|
|
|
devtool: 'source-map',
|
2021-03-03 15:06:52 +08:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'@': resolve('src')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-03-08 13:45:22 +08:00
|
|
|
chainWebpack: config => {
|
|
|
|
config.module.rules.delete('svg') // 删除默认配置中处理svg,
|
|
|
|
// const svgRule = config.module.rule('svg')
|
|
|
|
// svgRule.uses.clear()
|
2021-03-03 15:06:52 +08:00
|
|
|
config.module
|
2021-03-08 13:45:22 +08:00
|
|
|
.rule('svg-sprite-loader')
|
2021-03-03 15:06:52 +08:00
|
|
|
.test(/\.svg$/)
|
2021-03-08 13:45:22 +08:00
|
|
|
.include
|
|
|
|
.add(resolve('src/icons')) // 处理svg目录
|
2021-03-03 15:06:52 +08:00
|
|
|
.end()
|
|
|
|
.use('svg-sprite-loader')
|
|
|
|
.loader('svg-sprite-loader')
|
|
|
|
.options({
|
|
|
|
symbolId: 'icon-[name]'
|
|
|
|
})
|
2021-03-08 13:45:22 +08:00
|
|
|
}
|
2021-03-03 15:06:52 +08:00
|
|
|
|
2021-03-08 13:45:22 +08:00
|
|
|
}
|