Merge pull request #5 from LeaderOnePro/main

Update the Vite configuration and correct the path resolution to support file URLs.
This commit is contained in:
Philipp Schmid
2025-06-18 15:27:18 +02:00
committed by GitHub

View File

@@ -9,7 +9,7 @@ export default defineConfig({
base: "/app/",
resolve: {
alias: {
"@": path.resolve(new URL(".", import.meta.url).pathname, "./src"),
"@": path.resolve(__dirname, "./src"),
},
},
server: {