Passing data from route to layout in solid-start
routeData of that route and read it from the layout but it appears this is not possible (and I can see why things would get confusing if this were the case). What is the best way to pass da...Using custom element tags in JSX
Dropdown with click outside pattern
SOLID svg tsc error
TS2322: Type '{ children: Element[]; width: string; height: string; viewBox: string; fill: string; xmlns: string; "xmlns:xlink": string; }' is not assignable to type 'SvgSVGAttributes<SVGSVGElement>'. Property 'xmlns:xlink' does not exist on type 'SvgSVGAttributes<SVGSVGElement>'.
TS2322: Type '{ children: Element[]; width: string; height: string; viewBox: string; fill: string; xmlns: string; "xmlns:xlink": string; }' is not assignable to type 'SvgSVGAttributes<SVGSVGElement>'. Property 'xmlns:xlink' does not exist on type 'SvgSVGAttributes<SVGSVGElement>'.

Looks like solid-router doesn't like encoded forward slashes as params?
/app/:name/view and then the name might actually contain a forward slash, so i encode it with encodeURIComponent, but solid-router doesn't route it correct, it goes straight to 404.Vite v4 and You appear to have multiple instances of Solid
Is my Solid app size is huge?

ts-node not able to resolve ~ or node imports
~ nor the import from node itself were working. After some digging I found that I can fix the node imports by either removing the types key from the tsconfig compilerOptions altogether or adding node to the array. Regarding the ~ paths however I'm stuck. I tried adding the tsconfig-paths package which doesn't seam to work at all, tried adding imports to the package.json and switching to a #root prefix instead.
Nothing seams to help and I'm stuck with the annoying error message:
```
CustomError: Cannot find package '~' imported from /home/bikeshedder/projects/myproject/src/scripts/gen_schema.ts...Vite v4 breaking solid-auth
create-jd-app with solid-auth, then updated packages. When attempting to login, this error is produced: Error: Cannot read properties of undefined (reading 'v4')-coming from attempting to import { v4 } from "uuid". Vite 3 does not cause this issue.How to make a global layout?
routes/(root).tsx file, then the / path shows up as that html & css, but nothing from routes/index.tsx populates the <Outlet />. And if I navigate to /login then the html & css from the layout doesn't appear at all.
So I'm not sure what it should be instead....Is `style={}` performant?
Lazy in For results in renderToString timed out in production build

Virtual Scrolling with animation and dynamic loading
Should I use createMemo always?
Refetch routeData when dynamic route changes
[slug].tsx to display a blogpost for example. To get the data of the post from the database I use routeData in combination with createRouteData. Thereby I set the slug as the key. If I now navigate with a link between blogposts, routeData or createRouteData is not executed again, so the content of the dynamic route does not change. Is this intended or a bug? Do I need to use refetchRouteData to trigger this myself e.g. in createEffect?
```tsx
export function routeData({ params }: RouteDataArgs) {
return {...SolidStart render page from POST function
SolidStart with method="post" and action="".
To validate the form on server side, I export a POST function.
However I am wondering how I could, if the data I got isn't valid, show the form again with the data the user already submitted (and maybe additional error messages) from this POST function?...How to update nested store values such that it triggers updates
How to have data attribute on Custom component?

createStore from fetched data ?
losing reactivity in For component
todo.nested.data not updated when i set the store?...