feat: add the map

This commit is contained in:
Tom Boullay
2026-04-15 16:09:02 +02:00
parent aded4ee209
commit 9e9ac8066c
24 changed files with 386 additions and 585 deletions
+6
View File
@@ -1,7 +1,13 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "node:path";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});