chore: add fly config & move to npm

This commit is contained in:
2025-01-27 00:06:50 +00:00
parent f6bc7d9196
commit 6f98de5231
6 changed files with 5085 additions and 4 deletions

12
app/entry.client.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { startTransition, StrictMode } from "react";
import { hydrateRoot } from "react-dom/client";
import { HydratedRouter } from "react-router/dom";
startTransition(() => {
hydrateRoot(
document,
<StrictMode>
<HydratedRouter />
</StrictMode>
);
});