Skip to content

Commit 3db0634

Browse files
committed
Merge remote-tracking branch 'origin/reimagined' into reimagined
2 parents d4c7cbe + 3f3acd4 commit 3db0634

File tree

3 files changed

+35
-35
lines changed

3 files changed

+35
-35
lines changed

backend/vercel.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"$schema": "https://openapi.vercel.sh/vercel.json",
3-
"rewrites": [
4-
{
5-
"source": "/(.*)",
6-
"destination": "/src"
7-
}
8-
]
9-
}
2+
"$schema": "https://openapi.vercel.sh/vercel.json",
3+
"rewrites": [
4+
{
5+
"source": "/(.*)",
6+
"destination": "/src"
7+
}
8+
]
9+
}

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030
"vite": "^6.3.5",
3131
"backend": "workspace:*"
3232
}
33-
}
33+
}

web/src/routeTree.gen.ts

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,52 +8,52 @@
88
// You should NOT make any changes in this file as it will be overwritten.
99
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
1010

11-
import { Route as rootRouteImport } from './routes/__root'
12-
import { Route as IndexRouteImport } from './routes/index'
11+
import { Route as rootRouteImport } from "./routes/__root";
12+
import { Route as IndexRouteImport } from "./routes/index";
1313

1414
const IndexRoute = IndexRouteImport.update({
15-
id: '/',
16-
path: '/',
15+
id: "/",
16+
path: "/",
1717
getParentRoute: () => rootRouteImport,
18-
} as any)
18+
} as any);
1919

2020
export interface FileRoutesByFullPath {
21-
'/': typeof IndexRoute
21+
"/": typeof IndexRoute;
2222
}
2323
export interface FileRoutesByTo {
24-
'/': typeof IndexRoute
24+
"/": typeof IndexRoute;
2525
}
2626
export interface FileRoutesById {
27-
__root__: typeof rootRouteImport
28-
'/': typeof IndexRoute
27+
__root__: typeof rootRouteImport;
28+
"/": typeof IndexRoute;
2929
}
3030
export interface FileRouteTypes {
31-
fileRoutesByFullPath: FileRoutesByFullPath
32-
fullPaths: '/'
33-
fileRoutesByTo: FileRoutesByTo
34-
to: '/'
35-
id: '__root__' | '/'
36-
fileRoutesById: FileRoutesById
31+
fileRoutesByFullPath: FileRoutesByFullPath;
32+
fullPaths: "/";
33+
fileRoutesByTo: FileRoutesByTo;
34+
to: "/";
35+
id: "__root__" | "/";
36+
fileRoutesById: FileRoutesById;
3737
}
3838
export interface RootRouteChildren {
39-
IndexRoute: typeof IndexRoute
39+
IndexRoute: typeof IndexRoute;
4040
}
4141

42-
declare module '@tanstack/react-router' {
42+
declare module "@tanstack/react-router" {
4343
interface FileRoutesByPath {
44-
'/': {
45-
id: '/'
46-
path: '/'
47-
fullPath: '/'
48-
preLoaderRoute: typeof IndexRouteImport
49-
parentRoute: typeof rootRouteImport
50-
}
44+
"/": {
45+
id: "/";
46+
path: "/";
47+
fullPath: "/";
48+
preLoaderRoute: typeof IndexRouteImport;
49+
parentRoute: typeof rootRouteImport;
50+
};
5151
}
5252
}
5353

5454
const rootRouteChildren: RootRouteChildren = {
5555
IndexRoute: IndexRoute,
56-
}
56+
};
5757
export const routeTree = rootRouteImport
5858
._addFileChildren(rootRouteChildren)
59-
._addFileTypes<FileRouteTypes>()
59+
._addFileTypes<FileRouteTypes>();

0 commit comments

Comments
 (0)