finished the site

This commit is contained in:
2026-05-14 18:20:42 -05:00
parent 5b983c73b2
commit 1998736c8b
35 changed files with 1825 additions and 906 deletions
+22
View File
@@ -0,0 +1,22 @@
import { defineConfig } from "vite";
import react, { reactCompilerPreset } from "@vitejs/plugin-react";
import babel from "@rolldown/plugin-babel";
import tailwindcss from "@tailwindcss/vite";
import { fileURLToPath } from "node:url";
import { dirname, resolve } from "node:path";
// https://vite.dev/config/
const __dirname = dirname(fileURLToPath(import.meta.url));
export default defineConfig({
plugins: [
react(),
babel({ presets: [reactCompilerPreset()] }),
tailwindcss(),
],
resolve: {
alias: {
"@": resolve(__dirname, "src"),
},
},
});