guonan
2025-04-15 c62099b5f8753bee49c3fca630e9757b7682a6c1
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")
      }
    }
  }
})