多租户商城-商户小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }