Cached resource runs into an error when using an action

Can on__ handler be async?
const button = <button onClick={doSomethingAsync}>Click me</button>
const button = <button onClick={doSomethingAsync}>Click me</button>
Can't route with Solid Router in subfolder of multi-page Vite app
/prefabs with children like /prefabs/index.html and /prefabs/src/index.tsx.
at the root of the folder structure is /vite.config.ts which looks like this. (/techdc/ is not a solid application, its just TypeScript.)
```tsx
import { defineConfig } from 'vite'
import { resolve } from 'path'...createResource does not trigger suspense when its first-argument signal changes
window.location.search not empty after changing route
Undici fetch failed while building solid-start project on prod server
solid-start build inside docker build with node:20-alpine3.18
this error seems to intermittently and consistently appear. ...Nested Immer "produce" signals with components
How can I pass data from middleware to frontend on solid-start.
Reading page states in App
pageProps?cannot use import statement outside a module
Solid-refresh with Webpack HMR errors
Best pattern when using createStore to store large amount of data for a large app?
How to read SolidJS source code ?
Getting import errors

Hack to render
Accessing props
How to refetch a "use server" function / RPC?
createResource() for requests, which makes sense since it comes with a mutate and refetch function. Then it goes on to give a "Data loading always on the server" example, now moving to createAsync and cache (both /router imports), but from my attempts to use those examples, they work for initial page load but do not appear to contain mechanisms for re-running the server function and updating the UI accordingly. Additionally, the example listed above doesn't seem to actually run anything async (there's no await in that async server function), so I'm wondering if maybe the example is still missing something (like when is the route object used?! Is it a magic object / used somehow when exported from a page? Not listed in API Routes tab).
Am I missing something?...Conditional Component Type rendering?
<a> tag or a <div>.
The only conditional flow related documentation uses the <Show> component, but I'm trying to do something more akin to
```JSX....env.local not working
.env.local . However, I am not able to use any values from .env.local at all in a solid-start application. What's going on?