Issues with creating a new solidstart app

solid-router, don't remount when component is the same between routes
enableScheduling causes simple solid router examples to crash
enableScheduling in an App I've been playing around with, in the hopes that it could help a bit with some perf issues. It didn't make too much of a difference, but I forgot to turn enableScheduling back off. When I added Router, I got weird errors that I eventually traced back to enableScheduling. Repro here: https://stackblitz.com/edit/solidjs-templates-gttqb3?file=src%2FApp.tsx,src%2Findex.tsx
If this is expected behavior, I'd be curious to understand more 🙂...SolidJS with Vite vs Solid Start
Server Action Updates Load Function Server-Side but Stays Stale Client-Side
NOT_FOUND
Empty Password while updating session.
Cloud Flare Context is not defined when using Session
Uncaught (in promise) Error: Context is not available
Uncaught (in promise) Error: Context is not available

Problem importing useSession from vinxi/http
Universal rendering does not trigger re-render and onMount or onCleanup
solid-js/universal but I am not able to get onMount or onCleanup to work, and neither does setCount() re-render.
here's my code:
```tsx
function Component() {
const [count, setCount] = createSignal(0);...declare types for locals?
How do I set up different languages in routes in SS?
/about-us for English (no en in the url)
and
/es/sobre-nosotros for Spanish (notice the es that is mandatory)...Can cache be manually set?
export const getList = cache(...) and I access the list using createAsync in multiple places in the app
If a user chooses to delete the entire list in some section of the app and the request succeeds, the expected result for the list is now to be empty
To my understanding with the current model, the way to update the list to be empty would be to revalidate it, probably in an action, which would trigger another call to the server to get the new list (which is empty)
...Await a resource inside a function?
how to load data on link hover?
<Router preload> didn't do anything.Trouble With onCleanup()
how do i redirect on load?
Difficulty updating deeply nested store: produce() typed as Partial<T>
produce().
The draft parameter is presented as Partial<T>, generally meaning any modifications I need to do to deeply nested objects won't work as I have to continuously check if each level deep exists or not.
This behavior seems counter to the intended functionality of the function, so I'm wondering if it's my specific typescript setup that's getting in the way somewhere?...Where can I find any documentation about `RouteDefinition`?
dist/types.d.ts) what properties it has, but I don't know what some of them are for. Or maybe I'm looking in the wrong place? What I need is to attach a "permission name" to each route, and then before rendering the component check if the logged in user has that permission. Is RouteDefinition.info the right place for that?