Small preload script after document load but before page load
Creating custom signal.

How does height of the body work in Solid Playground?
Open Modal button is centered on the height of the window without considering the console whereas the actual modal is centered in the viewable space accounting for the console. The button is centered in a flexc container with a height of 100vh whereas the modal is centered with position: absolute, top: '50%', left: '50%', transform: 'translate(-50%, -50%)'.
Is this a specific behavior of the solid playground or is this a CSS specific thing with heights that I don't understand?...Is solid-realworld example really real world?
Theme management with Solid
Will we see solid-native?
How to clear solid-primitives's storage?

stop and then restart makeIntersectionObserver on window height change
`elements.forEach((element) =>...
Access dynamic route params in components outside of the FileRouter
classList not working on icons svg
useParams not working

SolidStart - Can't use 'os' module.
Error: Module "os" has been externalized for browser compatibility. Cannot access "os.homedir" in client code....
Solid Playground error in style tags

How to change child child value?
Please remove Portal's div wrapper...
Keep 'DEV' in production-mode
solid-js/store (for my experimentations at https://github.com/bigmistqke/solid-yjs-store, so i can allow multiple store-paths leading to the same reactive value). this is currently only exported as part of DEV afaik. Is there a way how to keep DEV available when doing a production-build?setting getter in store on already defined key loses reactivity
Can I change the requested URL in a middleware?
foo/bar to bim/bam/boum in the event object? Here's my skeleton code:
```ts
export const useBackendPathResolver = ({ forward }: MiddlewareInput) => {
return async (event: FetchEvent) => {...How to set a cookie when using `createRouteData` or `createServerData$`?
loader can either directly return a value or alternatively a Response. The Response can then be used to set the Set-Cookie header. Remix seems to recognize whether the values are returned directly or via a Response, e.g. with json({...}), and interprets the types correctly when calling useLoaderData<typeof loader>(). This does not seem to work with SolidStart. Is there an alte...