Pontus Magnusson
Pontus Magnusson
> It's not really a security risk as the iKey itself doesn't provide any permissions of any kind. Write permissions are permissions. A malicious user could inject data that the...
The time is controlled by [staleAge](https://github.com/TanStack/router/blob/249e41e2af935a8f70f652720db8311592433ca7/packages/react-router/src/router.ts#L1392). ```ts // Lower to 1 second const router = createRouter({ routeTree, defaultPreload: 'intent', defaultPreloadStaleTime: 1_000, }); ``` As a work-around, setting `shouldReload: false` in...
> should be fixed, please open a new issue if this is still relevant I'm curious to know which change you expected to fix this issue? 1.22.9 still has the...
I believe this is related to/a dupe of [1201](https://github.com/TanStack/router/issues/1201). Any progress on your work, @tannerlinsley ?
> Are you using file-based routing? if no, can you try it out and also trace it in comparison? Hi! We are using file based routers and the ts compiler...
> > > Are you using file-based routing? if no, can you try it out and also trace it in comparison? > > > > > > Hi! We are...
> Do you have some circular dependencies? e.g. do you use `fooRoute.fullPath` instead of the string literal `/foo`? In our case, we use `from: fooRoute.fullPath` in our navigates, i.e. `const...
> > For what it's worth, I was having extreme slowness on TS 4.8, updating to TS 5.1 has drastically sped up type checking. > > Currently on 5.2.2 myself,...