This commit is contained in:
2026-07-29 04:02:16 -04:00
parent 4a6732798a
commit 9be3f50344
18 changed files with 378 additions and 294 deletions
+10 -7
View File
@@ -5,13 +5,16 @@ import viteReact from "@vitejs/plugin-react";
import { defineConfig } from "vite";
const config = defineConfig({
resolve: { tsconfigPaths: true },
plugins: [
devtools(),
tailwindcss(),
tanstackRouter({ target: "react", autoCodeSplitting: true }),
viteReact(),
],
resolve: { tsconfigPaths: true },
plugins: [
devtools(),
tailwindcss(),
tanstackRouter({ target: "react", autoCodeSplitting: true }),
viteReact(),
],
server: {
port: 8000,
},
});
export default config;