How can I tell solid router to navigate to a page by forcing a refresh, breaking the SPA
Server function not being called (?)

reactivity works in vite dev but fails in vite build
Using createAsync in SolidJS: Handling Data Dependencies
Can I Block All Back Navigation?
A
or useNavigation()
, I can set replace: true
to remove the most recently visited page from the browser history.
But this doesn't block back navigation. If I click back, I skip the most recent page and go to the page that was visited before the page I just came from.
Is there any way that I can block all back navigation on a specific page?...SolidStart(?) useContext problem
useContext is undefined
ERR_HTTP_HEADERS_SENT
Initial search params
How do I best have createMemo in a store?
eslint (solid/reactivity) warning on nested store
I can't initialize a session
useSession
to create a session and initialize it with "light"
if it doesn't have a value:
```ts
import { createAsync, query } from "@solidjs/router";
import { useSession } from "vinxi/http";...Using Solid Signals/Stores in React
Help understanding the `solid` export condition, and how SolidStart uses it
solid
condition export is needed for libraries to work with SSR and SolidStart. I hope to get some help understanding what this it, why is it needed for SSR, and what is its relation with the generate: 'ssr'
option of the babel presetSSG isn't truly static
random
that generates a random number --> I configured server: { prerender: {routes: ['/random'] }}}
(route code below)...Error during navigation
useSearch()
or useParams()
(but this is only a guess).
My problem is that the stack trace does not help at all, I attached a screenshot.
Do you have any ideas how can I track the real location of the error?
Thanks....
Dependency error using npm init solid@latest
npm init solid@latest
. I have tried multiple templates including basic, with-authjs, and with-tailwindcss, but all have failed with dependency errors when running npm install
for the first time.
Since the length of the error exceeds the character limit (2000), I'll include the error in the comments....How to dynamically 'render' a string interweaved with `<span />`'s
<textarea />
to a <div contenteditable />
so that I have full control on how to render the text inside. Now my question is, the way I mark spelling and grammer errrors in with an array of index ranges ([number, number][]
).
right now I do the 'rendering' with this code
```tsx...Component in test is not updating despite signal change