2025-01-09 18:29:48 +08:00
|
|
|
|
const path = require('path')
|
|
|
|
|
|
const resolve = dir => {
|
|
|
|
|
|
return path.join(__dirname, dir)
|
|
|
|
|
|
}
|
|
|
|
|
|
module.exports = {
|
2026-03-30 09:59:21 +08:00
|
|
|
|
publicPath: '/',
|
2025-01-09 18:29:48 +08:00
|
|
|
|
lintOnSave: false,
|
|
|
|
|
|
chainWebpack: config => {
|
|
|
|
|
|
config.resolve.alias
|
|
|
|
|
|
.set('_c', resolve('src/components')) // key,value自行定义,比如.set('@@', resolve('src/components'))
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|