React Server ComponentsSPAs Powered by RSCBuild high-performance Single Page Applications with React Server Components. No server required at runtime - just pre-rendered HTML with full SPA interactivity. // vite.config.ts import { funstackStatic } from "@funstack/static"; export default { plugins: [ funstackStatic({ root: "./src/root.tsx", app: "./src/App.tsx", }), ], }; Why FUNSTACK Static?The be

