react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
π£-announcements
Not able to get nesting in the route tree using file based directory routes [Codesandbox provided]

ENOENT from `npm create @tanstack/router@latest`
npm create @tanstack/router@latest
I get the following error Error: ENOENT: no such file or directory, copyfile '/home/jdubs/.npm/_npx/cb95eaa94bb67c03/node_modules/@tanstack/create-router/templates/ide/vscode/_dot_vscode/settings.json' -> '/home/jdubs/development/playground/tanstack/my-router-app/.vscode/settings.json'
How to open a dialog from a child Outlet route?
How to add layout to dynamic route?

layout route component get all child routes and context
notFoundComponent bubbles up regardless, why?
defaultNotFoundComponent
in the router, and also instead defining notFoundComponent
in _root.tsx
. When I throw notFound()
inside a sub-route's beforeLoad
, it bubbles up, instead of rendering that sub-route's notFoundComponent
, why?Router setup
Roadmap for Start
How can I defer the creation of the router and still keep the type safety?

useSearch on a dynamic hook
Nested route different layout

Router context indeterministically using the initialValue instead of the passed value
beforeLoad
the router context sometimes use the value I passed to it and sometimes it uses the defaultValue (undefined in my case). Isn't the context supposed to always use the value provided to it?How to hide back button?
router.back()
but I want to hide this button if router.back()
would go out of the app. (For example, if you open a new tab and then go to the URL of the app, router.back()
will work until it will go back to the new tab)....Possibility of showing a spinner / loader prior to beforeLoad delay of 500ms
<LoadingView/>
to the user while convex and clerk is done loading auth. this takes approx 700ms
after that the beforeLoad happens and doens't return before 500ms
which results in a white screen in that time span.
My question is... is such a delay for this beforeLoad
normal? and if so, could i show my loading spinner again while beforeLoad
returns?...How to add debounce to loader
Search Params -Date parsing
Router set up for a complex app
app.my-company.com
and the external view is served at subdomain.my-company.com
where subdomain
is our customer's slug.
I want to serve different routes in the internal view and the external view. Currently I have the same repo deployed on all subdomains and in my CRA + react router setup, I serve either the internal routes (if it is a reserved subdomain) of the external routes (if there is a non-reserved subdomain). ...useSearch with validateSearch in _layout
Can I prevent path parameters (specifically @) from being escaped?