yanzhu-saas/yanzhu-ui/yanzhu-ui-mall-uniapp/vue.config.js

19 lines
284 B
JavaScript
Raw Normal View History

2026-02-05 15:50:36 +08:00
const path = require('path');
module.exports = {
pages: {
index: {
entry: 'main.js',
template: 'index.html',
filename: 'index.html'
}
},
configureWebpack: {
resolve: {
alias: {
'@': path.resolve(__dirname, './')
}
}
}
};