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
Performance issue w/ `parsePathname` in `path.ts`
path.ts
where the parsePathname
function takes a lot of time (and is called a lot).
Here's a performance trace from the chrome devtools on a staging build (not local dev, just to be sure I'm measuring something prod-like)....
set defaultViewTransition to false when search params are updating.
Clarification on behavior of `to=".."`
to
link option you can pass ".."
, which I'm assuming means "one directory above" (in unix-y terms). Am I understanding that correctly? In this case, does that route get pushed to the history? i.e. similar to navigate({ to: '..' })
having a bug when hosting Tanstack Start on a VPS
Duplicate Scripts loaded in Head
Path param being transformed into invalid URL/URI part
Defer viewTransition until component can render without suspending
Initial entries in browser history
initialEntries
in the createBrowserHistory
function params? Same thing that already exists in createMemoryHistory
.
My use case is that we rely on useCanGoBack
to display back buttons inside of the application, but a page reload causes the router to lose its internal history stack.
I was wondering if I could create my own history tracker stored in sessionStorage
that would populate the initialEntries
, but it's not supported as an option right now....breadcrumbs with `fullPath` type error
SolidJS and TanStack Router Excessive Rendering Issue
defaultPreload: 'intent'
causes continuous re-renders when hovering over links.
Issues Identified
1. Multiple Renders on Home Page Load:
- The home page (/
) renders at least four times upon initial navigation....Why Does defaultPreload: 'intent' Fetch Data Again on Click?
defaultPreload: 'intent'?
. When I hover over a link, it preloads the routes, which is the expected behavior. However, when I click the link, it still fetches/loads the route data again. Please check the attached video for a demonstration.Router + Query + Suspense + Deferred data
how to get params strict: false inside beforeLoad and loader?
relative navigation with dynamic source route?
How to emulate Next.js app router constraints
How to do non-nested routes with virtual file routes?
Migrating to tanstack Start
How do I get context set in root route?
Breadcrumbs with async loaders in between