Refetching Route Data with Solid Router
@solidjs/router? (not Solid Start; I'm using Vite)
- I'm mutating something on the backend and would like to make sure the data is up to date
- Returning the whole createResource return value kind of works -- calling refetch correctly refetches the data, but mutate doesn't work....SolidStart unicode behavior

Styled Components CSS LSP Support
input loosing focus after each key press
ESLint error "Promise-returning function provided to attribute where a void return was expected"
createResource and I'm trying to refetch it on button click:
```tsx
const App: Component = () => {
const [randomNumber, { refetch: refetchNum }] = createResource(
async () => await wretch("http://localhost:5000/api/random-number").get().text(),...How to throw errors in `createRouteAction()` and `createServerAction$()`?
new Error(), return an error Response, or...?createResource / Suspense blocks rendering
Data fetched from API, rather than showing the fallback in the Suspense element while the setTimeout is happening. I feel like im not understanding something here...
```tsx
import { createResource, Suspense } from "solid-js";
...`<script>` tag are loaded at the bottom of body, I need to load them on the `<head>` tag...
head tag of the document (<script src="https://kit.fontawesome.com/xxxxxxx.js" crossorigin="anonymous" />)
I can see that SolidStart put all the scripts at the end of the body.
Is it possible to load some script in the head specifically ?...Solid context doesnt work

Reactivity inside closure in return value
const { onSubmit } = someFunction()
The definition of onSubmit inside someFunction
```typescript
const onSubmit = (callback: (e: SubmitEvent) => void) => (event: SubmitEvent) => {...Error [RollupError]: "assign" is not exported by "node_modules/solid-js/web/dist/server.js"
solid-start build I get the following error:
```
file:///home/user/code/project/node_modules/rollup/dist/es/shared/node-entry.js:2245
base = Object.assign(new Error(base.message), base);...solid-router not updating when going the same page but with different parameters
/routines/[id].tsx:
```tsx
export default function EditRoutine() {
const params = useParams();
const routineIndex = storage.routines.findIndex(s => s.id == params.id)!;...updating a member inside another member inside an array inside a store using an index
FileRoutes duplicate hydration and not displaying dynamic route

How to use SolidStart on existing SolidJs project in order to benefit of File Based Routing ?
How do I modify a member of an object in an array in a SolidJS Store using the SetStoreFunction?
useParams() not changing when switching pages?
Component doesn't rerender when prop changes
make object no longer reactive

Solid Start error