update: init react-router application

This commit is contained in:
tao.chen
2026-07-30 12:02:13 +08:00
parent d06a516388
commit 6beb5a6062
29 changed files with 1719 additions and 1277 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,
},
});