懒羊羊
2023-12-12 776fbe36aec576c164c9edfe6be13d833eaef7b9
提交 | 用户 | 时间
776fbe 1 const path = require('path')
2 const resolve = dir => {
3   return path.join(__dirname, dir)
4 }
5 module.exports = {
6   publicPath: './',
7   chainWebpack: config => {
8     config.resolve.alias
9       .set('_c', resolve('src/components')) // key,value自行定义,比如.set('@@', resolve('src/components'))
10   },
11 }