Post CSS with Solid Start
Impossible to build fresh Solidstart

Solid MotionOne, how to animate presence in list (using For)
SolidJS Stores + SortableJS - Weird update bug at runtime | but data is correct.
reconcile
. I'm thinking it's because SortableJS seems to perform updates on the DOM elements outside of SolidJS's knowledge so maybe it's just what it is?...minified UI library package code calling undefined map
Wrapping SolidStart: JSX is an unknown file extension
Unexpected behavior when dealing with stores (createStore)
{data.user ? <A href={`/years/${data.user.position || "fy"}`}>Begin studying</A> : <A href="/login"><FaBrandsMicrosoft /> Login</A>}
{data.user ? <A href={`/years/${data.user.position || "fy"}`}>Begin studying</A> : <A href="/login"><FaBrandsMicrosoft /> Login</A>}
<style/> inserted above the component (unwanted)solidstart SSR

Registering API Endpoints on SolidStart
FileRoutes
. My goal is to fully control the paths manually instead of using the file-based routing system.
I know it’s possible to do this using a middleware like so:
```ts...Pattern for "sticky" searchParams?
searchParams
that I would like to be "sticky" over route changes? I know I could use the current searchParams to contruct the href
for many of the links on the page, but I'm wondering if there is a common pattern for this?
Thanks....How to use query.set (prev cache.set) to mutate async data for optimistic updates?
query.set
to mutate async data for optimistic updates.
it works for async data from createAsync
that’s reactive to param change. however, when i manually revalidate the data (either by calling revalidate somewhere, or revalidating from an action), it fetches fresh data rather than using the query.set i called earlier
when should i use query.set
if i’m going use revalidate()
in order get the data? calling revalidate is the only way to get the data as my query isn’t reactive to a param change...Why submission result doesn't update?
submission
does not update when the action does not return anything.
```tsx
import { action, useSubmission } from "@solidjs/router";
import { Show } from "solid-js";...How to type the context from the docs example
<CounterContext.Provider
and throws all kinds of errors.
Does anyone know how to make this work?
```ts...Error Boundary does not catch errors of the resource
Child Component not Re-rendering
Client side navigation does not render a page
/routes/items/(view-item).tsx
/routes/items/(view-item).tsx
In a File Route how to make it ignore the parent layout?
How to make a map?
how can I see console.log output in Solid Start server actions?
Need help debugging this error: Client-only API called on the server side. Run client-only code in
vinxi build
followed by vinxi start
I get the below error:
```bash
npm run start
...