solid-start
solid-start copied to clipboard
SolidStart, the Solid app framework
``` {appState.title ? `${appState.title} - RedditLattice` : `RedditLattice`} ``` This in my root.tsx doesn't work and I have confirmed with a console log in a createEffect that appState.title does trigger...
## Error ``` TypeError: event.env.getStaticHTML is not a function at /var/task/netlify/functions/index.js:13920:30 at /var/task/netlify/functions/index.js:14386:29 at /var/task/netlify/functions/index.js:14141:18 at /var/task/netlify/functions/index.js:14406:7 at Runtime.handler (/var/task/netlify/functions/index.js:14417:24) at Runtime.handleOnceNonStreaming (file:///var/runtime/index.mjs:1028:29) ``` Route: https://solidjs--redditlattice.netlify.app/r/wallpapers Source Code: https://github.com/vanillacode314/redditlattice/tree/solidjs Repro:...
First of all, Solid is awesome! I have been using it for two days now and I love it. I created a repo that reproduces the issue: https://github.com/urish/solid-start-plotly-ssr-issue The first...
added another line of example for a chained dynamic route
Fixed import path
This issue originates from the Fetch API standard as explained here: https://stackoverflow.com/a/63254504 Other frameworks have dealt with the same issue in the past: https://github.com/sveltejs/kit/issues/3460
Files in the [`/assets` dir](https://vitejs.dev/config/build-options.html#build-assetsdir) get a [content hash from Vite/Rollup](https://github.com/vitejs/vite/blob/07d3fbd21e6b63a12997d201a2deb5b2f2129882/packages/vite/src/node/build.ts#L552) by default. Because they have a content hash, the deploy adapters can give these files a `Cache-Control` header of...
Fix for #310 Exact solution we discussed on Discord, did some manual testing around retrying etc., seems to work correctly 😃
Per discord conversation about forwarding it
When there are multiple submissions to multi action that are pending, only the latest one will ever resolve. All the previous one will be stuck in pending for ever, even...