EventSource's response has a MIME type ("text/html") that is not "text/event-stream".
With CSR, I see components inside Suspense rendering without waiting for CreateAsync's data
const routeData: Accessor<ProfileRouteData | undefined> = createAsync(() =>
getData()
);
const routeData: Accessor<ProfileRouteData | undefined> = createAsync(() =>
getData()
);
Incorrect response MIME type. Expected 'application/wasm'.
I have a use case for createResource vs normal async await api call.
Is My Understanding Of RouteSectionProps Correct?
cache
, load
, and createAsync
pattern on all of my pages that load data.
My goal is to load data on hover before navigating to the page.
When the cache function does not need a route parameter, this pattern works as expected....Page content not updating on route change
How to get snapshot value from store
state/list-state.js
```...AggregateError on accessing my db with drizzle-orm and supabase
/src/api/db.ts
```ts
import { drizzle } from 'drizzle-orm/postgres-js';
import postgres from 'postgres';
...Can't build solid-start app on vercel
[error] [vite:load-fallback] Could not load /vercel/path0/src/app.tsx (imported by node_modules/@solidjs/start/dist/client/StartClient.jsx): ENOENT: no such file or directory, open '/vercel/path0/src/app.tsx'
Error: Could not load src/app.tsx (imported by node_modules/@solidjs/start/dist/client/StartClient.jsx): ENOENT: no such file or directory, open '/vercel/path0/src/app.tsx'
[error] [vite:load-fallback] Could not load /vercel/path0/src/app.tsx (imported by node_modules/@solidjs/start/dist/client/StartClient.jsx): ENOENT: no such file or directory, open '/vercel/path0/src/app.tsx'
Error: Could not load src/app.tsx (imported by node_modules/@solidjs/start/dist/client/StartClient.jsx): ENOENT: no such file or directory, open '/vercel/path0/src/app.tsx'
Using session causes "Cannot set headers after they are sent to the client"
/users
. Clean cookies on the page and you are supposed to get the error.
Am I doing something wrong, or it's a potential bug?
Thanks!...Help Me Solve "undefined" warning When Using <Show> Component
createAsync()
to get and order record.
const order = createAsync(() => getOrder(params.chargeId));
const order = createAsync(() => getOrder(params.chargeId));
Vercel server call not Allowed: 405 Method Not Allowed
On Client: Server
However, when deploying to vercel, I get the following: [2nd img]...
Vite Certificate
@solidjs/start @solidjs/meta not being SSR'd when resources used, bug or my misuse?
Redirect does not happen during load if there is an awaited call before it.
Bug? with ssr, lazy loading, and css.

how using createRoot?
useNavigate outside of router - for example on authentication faiures?
useNavigate
, even though all these functions are called from a component under a router.
Is there another strategy I can use here?...How do i host static vinxi build with nginx so the routing works, is there any guide?