This commit is contained in:
2025-12-17 21:09:55 +11:00
parent f304a51a39
commit 7026543fc7
25 changed files with 1989 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "path";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});