feat: base mui

This commit is contained in:
redglow
2026-06-20 16:16:12 +02:00
parent 4708a6396c
commit 1eeab12f8e
14 changed files with 511 additions and 25 deletions
+10 -1
View File
@@ -1,7 +1,16 @@
import { tanstackRouter } from "@tanstack/router-plugin/vite";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [
tanstackRouter({
target: "react",
autoCodeSplitting: true,
routesDirectory: "./src/client/routes",
generatedRouteTree: "./src/client/routeTree.gen.ts",
}),
react(),
],
});