Impossible to navigate to route that have any component using setSearchParams in createEffect
how to disable server output, enable *only* pre-rendering?
server.prerender.crawLinks = true
, the npm run build
command outputs both a server and static pre-render. How do we configure it to output only SSG without the server output?Unexpected End of JSON Input on API Route
redirect_url
I send the browser back to the SolidStart App.
I have this file at src/routes/auth/callback.ts
that works in dev mode but not when deployed:
```...using id on route and named route breaks
/:id/@me/
route gets ignored and only the /:id/:guild_id/
route gets mounted when I navigate to http://localhost:1420/123456789123456789/@me
(as example)
```tsx...how to update the DOM styles in a time sequence when a single signal changes?
div
elements to appear one by one.
I tried to do this, it seems that createEffect
only updates once?
```javascript...Is there a way to enforce children of a particular component type?
how to redirect in a "use server" function?
isDev is false in dev
import { isDev } from "solid-js/web";
console.log({ isDev });
import { isDev } from "solid-js/web";
console.log({ isDev });
false
in dev. why? i'm using solidstart...How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
const [value, setValue] = createSignal<string>("")
createEffect(() => { localStorage.setItem("value", value()) })
const [value, setValue] = createSignal<string>("")
createEffect(() => { localStorage.setItem("value", value()) })
Race condition
Solidstart and websockets
pnpm run build
and pnpm run start
the websocket connections just instantly close right after opening. I'm not able to get any clues about the issue so I'm wondering if it's anything to do with start or Nitro or Vinxi.
Any clues?...What is the logic for the generatino of hyd. keys eg 0-0-0-0-0-0-0-0-1-0-0-0-0-0-0-1-0-0-0-0-0-0-0-2
onMount randomly not called
Weird Context Behaviour
Cookies banner
solid-transition-group not working inside createRoot
Multiple build
SSR
renderer hosted on Vercel and another for Static
renderer to build an app with Capacitor.
I would like to know what would be the best approach through an npm
script to build either application, knowing that I have environment variables that differ....Getting value from store is not reactive.

SEO
robots.txt
and sitemap.xml
files on Solid Start project?...