fix wrangler config and lockfile
Browse files- __pycache__/backend.cpython-312.pyc +0 -0
- drivecore +1 -0
- src/routeTree.gen.ts +9 -0
- wrangler.jsonc +2 -2
__pycache__/backend.cpython-312.pyc
ADDED
|
Binary file (12.4 kB). View file
|
|
|
drivecore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Subproject commit 717fa60675a3712837c8767cf46d48158b97d23a
|
src/routeTree.gen.ts
CHANGED
|
@@ -237,3 +237,12 @@ const rootRouteChildren: RootRouteChildren = {
|
|
| 237 |
export const routeTree = rootRouteImport
|
| 238 |
._addFileChildren(rootRouteChildren)
|
| 239 |
._addFileTypes<FileRouteTypes>()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 237 |
export const routeTree = rootRouteImport
|
| 238 |
._addFileChildren(rootRouteChildren)
|
| 239 |
._addFileTypes<FileRouteTypes>()
|
| 240 |
+
|
| 241 |
+
import type { getRouter } from './router.tsx'
|
| 242 |
+
import type { createStart } from '@tanstack/react-start'
|
| 243 |
+
declare module '@tanstack/react-start' {
|
| 244 |
+
interface Register {
|
| 245 |
+
ssr: true
|
| 246 |
+
router: Awaited<ReturnType<typeof getRouter>>
|
| 247 |
+
}
|
| 248 |
+
}
|
wrangler.jsonc
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"$schema": "node_modules/wrangler/config-schema.json",
|
| 3 |
-
"name": "
|
| 4 |
"compatibility_date": "2025-09-24",
|
| 5 |
"compatibility_flags": ["nodejs_compat"],
|
| 6 |
-
"main": "@tanstack/react-start/server-entry"
|
| 7 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"$schema": "node_modules/wrangler/config-schema.json",
|
| 3 |
+
"name": "drivecore",
|
| 4 |
"compatibility_date": "2025-09-24",
|
| 5 |
"compatibility_flags": ["nodejs_compat"],
|
| 6 |
+
"main": "@tanstack/react-start/server-entry"
|
| 7 |
}
|