Import error with Outlet
Create signal from store element
How to react to length of store array?
const [pools, setPools] = createStore<Pool[]>([])
const [pools, setPools] = createStore<Pool[]>([])
SolidJS with Router behind Apache Proxy
Error in NSwag generated api client
Handling errors in createResource
createResource handle fetches data from a REST API and is displayed on the screen. I have interval that calls refetch to refresh the data.
If the fetch fails, my interval will keep running, and even if the remote service comes up, the refetch occurs, but the page never renders the new data.
Is there a better way to handle errors in my resource? I don't want to try catch and return no data, as I want to display the existing data until new data can be retrieved....How to update data saved on local storage
SolidJS Universal - How does the method of tree creation get chosen?
insertNode(). These other trees skip nodes that are in the primary tree, but still need to connect to nodes that are higher/lower in the tree, if that makes sense.
The trouble that I ran into was that in some cases (i.e. shallow trees), the tree is being created in a breadth-first approach. In other cases (i.e. wide/deep trees), the tree is being created in a depth-first approach. This makes it much more complex to know if nodes are being added bottom-up or top-down, and was wondering if there's a way to configure this, or know if there's a way of figuring out which method will be chosen. Thanks!...Solid-Start preloads 404 page instead of OAuth API route
Solid-Router: "named views" equivalent?
How to add headers to static asset responses with Solid Start?
routeRules in the Nitro server config, but these seem to not work either.
```javascript
export default defineConfig({
start: {...stop screen flicker from createResource refetch?
Can anyone tell me how best to do it? Store API
Export Vercel Functions config on @solidjs/start@0.5.9
0.3.0 project to 0.5.9 by scooping info here and there on the Github commits & issues.
However I'm having an issue with API routes when they are deployed on Vercel Functions.
I've got API routes that trigger a long call that builds a PDF on the node server.
- test-export: bare bones export that creates a 256px image and exports it as a PDF using jsPDF
- high-res-export: complex export that assembles large pages and exports them as a PDF using jsPDF...How do I upgrade a solid-start project to use the latest version of solid-start
^0.2.20
(The repo in question: https://github.com/seeplusplus/solid-start-vite-pwa)...React is not defined when using custom server directory for Vite
src for dev mode in Vite & Solid setup, I get React is not defined error.
Steps to reproduce:
1. Create new Solid project with npm create vite@latest
2. Move index.html, index.tsx to separate dev directory...