Skip to content

Commit d875793

Browse files
committed
fix: routeTree 파일 수정
1 parent 2238b4b commit d875793

File tree

1 file changed

+56
-56
lines changed

1 file changed

+56
-56
lines changed

apps/frontend/src/routeTree.gen.ts

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -10,104 +10,104 @@
1010

1111
// Import Routes
1212

13-
import { Route as rootRoute } from './routes/__root'
14-
import { Route as IndexImport } from './routes/index'
15-
import { Route as JoinIndexImport } from './routes/join/index'
16-
import { Route as WorkspaceWorkspaceIdImpo./routes/joinworkspace/$workspaceId'
13+
import { Route as rootRoute } from "./routes/__root";
14+
import { Route as IndexImport } from "./routes/index";
15+
import { Route as JoinIndexImport } from "./routes/join/index";
16+
import { Route as WorkspaceWorkspaceIdImport } from "./routes/joinworkspace/$workspaceId";
1717

1818
// Create/Update Routes
1919

2020
const IndexRoute = IndexImport.update({
21-
id: '/',
22-
path: '/',
21+
id: "/",
22+
path: "/",
2323
getParentRoute: () => rootRoute,
24-
} as any)
24+
} as any);
2525

2626
const JoinIndexRoute = JoinIndexImport.update({
27-
id: '/join/',
28-
path: '/join/',
27+
id: "/join/",
28+
path: "/join/",
2929
getParentRoute: () => rootRoute,
30-
} as any)
30+
} as any);
3131

3232
const WorkspaceWorkspaceIdRoute = WorkspaceWorkspaceIdImport.update({
33-
id: '/workspace/$workspaceId',
34-
path: '/workspace/$workspaceId',
33+
id: "/workspace/$workspaceId",
34+
path: "/workspace/$workspaceId",
3535
getParentRoute: () => rootRoute,
36-
} as any)
36+
} as any);
3737

3838
// Populate the FileRoutesByPath interface
3939

40-
declare module '@tanstack/react-router' {
40+
declare module "@tanstack/react-router" {
4141
interface FileRoutesByPath {
42-
'/': {
43-
id: '/'
44-
path: '/'
45-
fullPath: '/'
46-
preLoaderRoute: typeof IndexImport
47-
parentRoute: typeof rootRoute
48-
}
49-
'/workspace/$workspaceId': {
50-
id: '/workspace/$workspaceId'
51-
path: '/workspace/$workspaceId'
52-
fullPath: '/workspace/$workspaceId'
53-
preLoaderRoute: typeof WorkspaceWorkspaceIdImport
54-
parentRoute: typeof rootRoute
55-
}
56-
'/join/': {
57-
id: '/join/'
58-
path: '/join'
59-
fullPath: '/join'
60-
preLoaderRoute: typeof JoinIndexImport
61-
parentRoute: typeof rootRoute
62-
}
42+
"/": {
43+
id: "/";
44+
path: "/";
45+
fullPath: "/";
46+
preLoaderRoute: typeof IndexImport;
47+
parentRoute: typeof rootRoute;
48+
};
49+
"/workspace/$workspaceId": {
50+
id: "/workspace/$workspaceId";
51+
path: "/workspace/$workspaceId";
52+
fullPath: "/workspace/$workspaceId";
53+
preLoaderRoute: typeof WorkspaceWorkspaceIdImport;
54+
parentRoute: typeof rootRoute;
55+
};
56+
"/join/": {
57+
id: "/join/";
58+
path: "/join";
59+
fullPath: "/join";
60+
preLoaderRoute: typeof JoinIndexImport;
61+
parentRoute: typeof rootRoute;
62+
};
6363
}
6464
}
6565

6666
// Create and export the route tree
6767

6868
export interface FileRoutesByFullPath {
69-
'/': typeof IndexRoute
70-
'/workspace/$workspaceId': typeof WorkspaceWorkspaceIdRoute
71-
'/join': typeof JoinIndexRoute
69+
"/": typeof IndexRoute;
70+
"/workspace/$workspaceId": typeof WorkspaceWorkspaceIdRoute;
71+
"/join": typeof JoinIndexRoute;
7272
}
7373

7474
export interface FileRoutesByTo {
75-
'/': typeof IndexRoute
76-
'/workspace/$workspaceId': typeof WorkspaceWorkspaceIdRoute
77-
'/join': typeof JoinIndexRoute
75+
"/": typeof IndexRoute;
76+
"/workspace/$workspaceId": typeof WorkspaceWorkspaceIdRoute;
77+
"/join": typeof JoinIndexRoute;
7878
}
7979

8080
export interface FileRoutesById {
81-
__root__: typeof rootRoute
82-
'/': typeof IndexRoute
83-
'/workspace/$workspaceId': typeof WorkspaceWorkspaceIdRoute
84-
'/join/': typeof JoinIndexRoute
81+
__root__: typeof rootRoute;
82+
"/": typeof IndexRoute;
83+
"/workspace/$workspaceId": typeof WorkspaceWorkspaceIdRoute;
84+
"/join/": typeof JoinIndexRoute;
8585
}
8686

8787
export interface FileRouteTypes {
88-
fileRoutesByFullPath: FileRoutesByFullPath
89-
fullPaths: '/' | '/workspace/$workspaceId' | '/join'
90-
fileRoutesByTo: FileRoutesByTo
91-
to: '/' | '/workspace/$workspaceId' | '/join'
92-
id: '__root__' | '/' | '/workspace/$workspaceId' | '/join/'
93-
fileRoutesById: FileRoutesById
88+
fileRoutesByFullPath: FileRoutesByFullPath;
89+
fullPaths: "/" | "/workspace/$workspaceId" | "/join";
90+
fileRoutesByTo: FileRoutesByTo;
91+
to: "/" | "/workspace/$workspaceId" | "/join";
92+
id: "__root__" | "/" | "/workspace/$workspaceId" | "/join/";
93+
fileRoutesById: FileRoutesById;
9494
}
9595

9696
export interface RootRouteChildren {
97-
IndexRoute: typeof IndexRoute
98-
WorkspaceWorkspaceIdRoute: typeof WorkspaceWorkspaceIdRoute
99-
JoinIndexRoute: typeof JoinIndexRoute
97+
IndexRoute: typeof IndexRoute;
98+
WorkspaceWorkspaceIdRoute: typeof WorkspaceWorkspaceIdRoute;
99+
JoinIndexRoute: typeof JoinIndexRoute;
100100
}
101101

102102
const rootRouteChildren: RootRouteChildren = {
103103
IndexRoute: IndexRoute,
104104
WorkspaceWorkspaceIdRoute: WorkspaceWorkspaceIdRoute,
105105
JoinIndexRoute: JoinIndexRoute,
106-
}
106+
};
107107

108108
export const routeTree = rootRoute
109109
._addFileChildren(rootRouteChildren)
110-
._addFileTypes<FileRouteTypes>()
110+
._addFileTypes<FileRouteTypes>();
111111

112112
/* ROUTE_MANIFEST_START
113113
{

0 commit comments

Comments
 (0)