We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4fb9d commit c429cb2Copy full SHA for c429cb2
frontend/vite.config.ts
@@ -1,5 +1,4 @@
1
import path from "node:path";
2
-import { fileURLToPath } from "node:url";
3
import { defineConfig } from "vite";
4
import react from "@vitejs/plugin-react-swc";
5
import tailwindcss from "@tailwindcss/vite";
@@ -10,7 +9,7 @@ export default defineConfig({
10
9
base: "/app/",
11
resolve: {
12
alias: {
13
- "@": path.resolve(path.dirname(fileURLToPath(import.meta.url)), "src"),
+ "@": path.resolve(__dirname, "./src"),
14
},
15
16
server: {
0 commit comments