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
Is there an equivalent of SolidStart's renaming index.tsx option?
index.tsx
files within a nested file route? For example, SolidStart's file router has an option to rename these index files: https://docs.solidjs.com/solid-start/building-your-application/routing#renaming-index
```...How to use params.parse?
parseParams
, I used to do
```js
export const Route = createFileRoute('/post/$id/_layout')({
component: Outlet,...Typesafety on use useLocation
Subscribe / Publish style updates?
All links are active and have same href

Route not active when using `redirect()` in `beforeLoad`
redirect
in beforeLoad
in my index.tsx
route to navigate to a different route. This works but the activeProps
to not get applied to that route. See the minimal repro below:
https://stackblitz.com/edit/tanstack-router-redirect?file=src%2Froutes%2Findex.tsx...Fully SPA on the client for Electron and some SSR stuff only for the web. Is it possible in TSR?
index.html
(although we can serve the standalone server of like let's say Next.js but we're not doing that due to security and added resources). SPA will work great for 90% of our requireement but I was wondering if we could do SSR to certain pages that only works for web. Is it possible? We do some conditional building...
Handling types of "prev" value
SEO (meta prop)
meta
argument when creating routes actually do something in fully SPA client-side app, or is this only applicable when using in combination with tanstack start?loader and lazy loading routes? is it possbile?
File-based directory routes not working
How to do authenticated routes in `start` like this example?
Sync loader always causes pending component to show?
useQuery()
(so we get reactive data but also start fetching the data as soon as possible).
We handle loading state of the actual route using skeletons, so we want to get it mounted as soon as possible. We observe that merely having the loader(): void
defined always causes the throbber to load, even though we return no value and the loader is not async
.
```tsx...Flat routes don't work in TanStack Start?

How do I assert types for route params?
createFileRoute("/listening/top/$entity")
is it possible to assert or assign a type to $entity
? in my case I'd like for it to be an enum with artists
, tracks
, albums
but I can't figure out how to extend it beyond a string
...Type-safety for list of params in custom component
Search params start and end date validation
External Providers
createLink causes weird behavior with component?
createLink
. Felt like a great idea at first to help me distribute the type safety of the router on a component that I'd like to link to another page. But it causes this weird behavior with the styles.
How do I stop it from doing that?
```tsx...Navigation state?