feat: migrate runtime backend to node server

This commit is contained in:
victo
2026-04-08 16:41:29 +08:00
parent 9d2fc9e4b8
commit a83841ff2d
70 changed files with 8239 additions and 1561 deletions

View File

@@ -25,7 +25,7 @@ export type ResolvedAppRoute = {
componentProps?: Record<string, unknown>;
};
const GameApp = lazy(() => import('../App')) as AppRouteComponent;
const GameApp = lazy(() => import('../AuthenticatedApp')) as AppRouteComponent;
const PresetEditorApp = lazy(async () => {
const module = await import('../components/PresetEditor');