wangjuncheng
2025-04-15 d5b4f923a873820d0ba01b73da629e4ca8456457
1
2
3
4
5
6
7
8
9
10
11
12
13
const { defineConfig } = require('@vue/cli-service');
const path = require("path");
 
module.exports = defineConfig({
  transpileDependencies: true,
  configureWebpack: {
    resolve: {
      alias: {
        "@": path.resolve("src")
      }
    }
  }
})