RRS First version

This commit is contained in:
2026-09-12 03:08:23 -04:00
commit c050d25a84
41 changed files with 5575 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
watch: {
// Avoid caching a temporarily empty module while an editor writes a file.
awaitWriteFinish: { stabilityThreshold: 200, pollInterval: 50 },
},
},
});