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