The given code sandbox is private. But I guess it’s related to the fact that for client side navigations React `startTransition` is used so that alters behavior of Suspense boundaries a bit
> > I invite you to read the [docs on the handle hook](https://svelte.dev/docs/kit/hooks#Server-hooks-handle), which already give you this functionality.
>
> It doesn't.
>
> Concrete use case...
> [@pawelblaszczyk5](https://github.com/pawelblaszczyk5) I can't seem to open the repro you linked. I'm getting a 404.
Oh, sorry made it private by accident while pushing - fixed now
There was similar isssue about React itself and the team answered that these pre releases aren’t supposed to follow semantic versioning - https://github.com/facebook/react/issues/30415
### Describe the issue
Hello 👋
`stylex.types` functions are typed to return specific class instances for each of the types - all of these are imported from `VarTypes` file. However, these aren't ...
Afaik it has something to do with Chrome itself - https://github.com/facebook/react/issues/31929
https://github.com/TanStack/router/issues/3056
https://github.com/remix-run/react-router/issues/1...
This also seems to be fixing this one: https://github.com/remix-run/react-router/issues/12715
![image](https://github.com/user-attachments/assets/fd8de663-67fe-4cc5-b8fd-9fa5369b0bd0)
You could also use `package.json#imports` which are standard based and works across tooling 😃 In theory tsconfig paths aren’t for creating custom aliases
### I'm using React Router as a...
framework
### Reproduction
This was previously reported as a part of https://github.com/remix-run/react-router/issues/12424 Since that one is already resolved ...
> Ok, we'll have to look closer at whether we want to add `import "client-only"` to some parts of the library (e.g. the components with unserializable props).
>
> However, at the core of the iss...
> But most of these components are very renderable both serverside and clientside, it's just that some of them contain hooks and must therefore have the `"use client"` directive at the top of the f...
I think many of them shouldn’t be marked with “use client” at all because they have unserializable props and they aren’t suitable as boundaries. Check out this MR from React Aria - https://github.c...
If you mark a file with “use client” and import it from server components the content of the module is replaced with references. You can’t access values off from references - hence it breaks
Add `as const` to `clientLoader.hydrate = true` - this way it’ll be inferred as “true” instead of a Boolean 😃 I recall this being documented somewhere but can’t find it now