jasybeaar commited on
Commit
33bdc06
·
1 Parent(s): 6f0dc0a

fix wrangler config and lockfile

Browse files
__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": "tanstack-start-app",
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
  }