Skip to content

Commit 972392d

Browse files
authored
Merge pull request #5 from LeaderOnePro/main
Update the Vite configuration and correct the path resolution to support file URLs.
2 parents 7f95976 + 70c348c commit 972392d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
base: "/app/",
1010
resolve: {
1111
alias: {
12-
"@": path.resolve(new URL(".", import.meta.url).pathname, "./src"),
12+
"@": path.resolve(__dirname, "./src"),
1313
},
1414
},
1515
server: {

0 commit comments

Comments
 (0)