多租户商城-商户小程序端

7 lines
226 B

2 years ago
  1. const path=require('path')
  2. module.exports = {
  3. // 配置路径别名
  4. configureWebpack: (config) => {
  5. config.resolve.alias['@']=path.resolve(__dirname,"./");
  6. },
  7. productionSourceMap: false,
  8. }