This commit is contained in:
2025-08-26 00:03:12 +08:00
parent ba4098e1d8
commit 44a94b861a
4 changed files with 5 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
// ... existing code ...
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { fileURLToPath, URL } from "node:url";
// https://vite.dev/config/
export default defineConfig({
@@ -56,8 +56,7 @@ export default defineConfig({
resolve: {
alias: {
"@": "/src",
"@/services": "/src/services",
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});