Vinxi conditional config by mode
app.config.ts
to be aware of the mode in which Vinxi is being run?
When using Vite directly, the following is possible: https://vite.dev/config/#conditional-config
It does not appear that SolidStart's defineConfig
is similarly capable of taking a function that is aware of the mode in which Vinxi is being run....SEO not working when sharing
Please see both images...

Background jobs in Solid Start
Sessions broken on external hosts ?
query
s to display the user's score and name for example.
The session is created by the user first being prompted to choose a name, which is then sent to the server with an actions. If successful, the player object is returned and all query
s are invalidated so that the page transitions from "must create name first" phase to "can now play" phase.
This has been working great both in dev and production modes for now. But after deploying to the remote test host it is now impossible to get past the "Please choose a name" screen. This only occurs with hosts other than localhost, meaning that if I open the web page on the server, it works fine. But if I open from another computer on the network, the aforementioned issue occurs....
Is `load` function a mistake for `preload` function?
load
function" in the bullet points of the document.
Is load
function a mistake for preload
function?
...
How to use useSubmission in layout?
app.tsx
file like so
```ts
import { Router, useSubmission } from "@solidjs/router";
import { FileRoutes } from "@solidjs/start/router";...How to keep an active item for a list of items in SolidJS?
Reactive conditional rendering based on Store of objects
Rendering <input>s in <For>
<input>
s to read their value?
Thanks....Does createAsync cause double renders on the server i.e an extra render after data becomes available
Throw vs return in router’s action
SSR failed to import "drizzle-orm/bun-sqlite"
Weird Vinxi dev issue
Solid devtools with Astro
Nested layouts with dynamic route
/plans/[id]
and /plans/[id]/select
. Both of these routes should share same layout, how can I acheive it with dynamic paremeter?`useNavigate` inside an `action`?
useNavigate
in an action
when my form is submitted. However my page isn't navigating. No errors appear in console.
```
const some_action = action(async (data) => {useNavigate()("/")})
...Issue when navigating between pages?
All of a sudden `classList` is typed as string | undefined
class
and classList
have unexpected types:
```src/Wes95/components/Window.tsx:159:14 - error ts(2322): Type '{ children: Element[]; class: string; }' is not assignable to type 'HTMLAttributes<HTMLDivElement>'.
Property 'class' does not exist on type 'HTMLAttributes<HTMLDivElement>'.
...Handling 404 within existing catch-all route
I get ERR_UNHANDLED_REJECTION