HomeLease/vue.config.js

13 lines
204 B
JavaScript
Raw Normal View History

const path = require('path')
module.exports = {
configureWebpack: {
resolve: {
alias: {
// 设置 @ 指向 根目录
'@': path.resolve(__dirname, '/'),
},
},
},
}