vue.config.js 226 B

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