initial copy and structuring

This commit is contained in:
Jessi McKissick
2026-05-26 21:08:24 -07:00
commit 41e1ab64fc
20 changed files with 5050 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { reactRouter } from "@react-router/dev/vite";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [tailwindcss(), reactRouter()],
resolve: {
tsconfigPaths: true,
},
});