deploying a solid js app in render while consuming a backend api
How do i fetch data correctly in a route?
Adding new element to an array before the last element inside solid store
Using SolidStart's prisma template app, getting odd error & crash from the route.
Modularizing Components
Context with Meta
Suspense overlay
Suspense as a catch all to show a loading indicator would make a lot of sense. The issue is that we do want to show the children of Suspense and the indicator at the same time.
I skimmed through the Suspense source and it doesn't seem possible to hook into the existing system since SuspenseContext/getSuspenseContext is not exported to create a separate component.
Is it feasible to do this with the current state of Suspense? Something like an overlay prop on Suspense would be ideal eg. ...is hmr broken? or is this intentional?
index.tsx route
it does a full refresh 🤔...How to label each page with a title?
routes.tsx file which defines routes – a nested array of RouteDefinition. Then I have this:
```tsx
render(() => (
<Router root={Layout}>...Comp is not a function?

Solidstart with CSR, SSR and SSG?
"use server"; add to run SSR.
Client-side rendering (CSR)
Server-side rendering (SSR)
Static site generation (SSG)...View transition api and solid start
Vercel deployment broken

OAuth2 with Scopes
Do something when a submission ends if there's more than 1 action
action.result inside a createEffect where action is the returned value from useSubmission(myAction)
This has been working fine but breaks the moment I use more than one useSubmission in the same component. All effects run on success even if just one action was fired (in my case showing multiple toasts)
What's the pattern for handling this?...Is there a good way to force Solid to fully rerender a component when its props change?
Maximum call stack size exceeded
Which way to go? Solid Router's action or SolidStart server function