Replies: 1 comment
-
Everything seems to be working as expected here, though I can see where it might be confusing how it's output. In your const IndexRoute = IndexImport.update({
path: "/",
getParentRoute: () => rootRoute,
});
const DocumentIndexRoute = DocumentIndexImport.update({
path: "/",
getParentRoute: () => DocumentRoute,
}); The "path" is '/' but what it really means is 'pathsegment' (the actual path you're thinking of - or Note that you have conflicting routes, though: Since __root.jsx
index.jsx
_document.jsx
document.index.jsx
document.category.jsx |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
This is my url:
"/" "/document" "/document/category"
__root.jsx
index.jsx
document.jsx
document.index.jsx
document.category.jsx
document.jsx
document.index.jsx
document.category.jsx
Beta Was this translation helpful? Give feedback.
All reactions