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...solid-router without SSR and without having to redirect
When deploying applications that use a client side router that does not rely on Server Side Rendering you need to handle redirects to your index page so that loading from other URLs does not cause your CDN or Hosting to return not found for pages that aren't actually there.I havent anticipated that and i need the users to visit a specific route of my app (as it is possible in vite dev mode) ....
Portals in nested routes not rendering in consistent order
/one/two/three first causes the breadcrumbs to render in the order three / one / two, loading /one/two first causes the breadcrumbs to render two / one.
Navigating around more seems to sort it out but the render order of the portals is making my current approach for a breadcrumb system super unreliable.
My guess is it's some weird interplay of lazy loading routes and portal mounting order, since not using lazy loading seems to make everything work fine.
...
How do I use solid router in the solid playground?
how to make two-way data transfer through components?
Is createRouteAction removed ? Or Replaced ?
createRouteAction in the docs.
Can anyone guide me ? Is there a new equivalent ?
Thanks in advance 🙏...Passing "up" signals in Solid
useNavigate - navigate(path) throws "computations created outside a `createRoot`" and error
computations created outside aand thencreateRootorrenderwill never be disposed
Uncaught (in promise) TypeError: Cannot read properties of null (reading '2')...

(node:53181) Warning: An error event has already been emitted on the socket.
Can't use an image without src/assets/ at the path
solid-router | return Navigate as component
<Navigate href="/auth/login" /> as a component rather than an element?
On version solid-router@0.8 I was able to return an element for a route, however the new version 0.12 requires a component instead.
```jsx...Anchor with target="_blank" leading to app's URL
href set to an external link for an image. When clicking on this link, a new tab should load the image with given URL.
However, instead of loading the image's url, it loads the apps url.. what might be the issue?
```jsx
<a class="btn btn-sm" href={store.imageModal.url} target="_blank">View in new tab</a>...Solid-start site shows blank page when deployed with github-pages

Is there a way to get Server Reference inside SolidStart? or other way to use webSockets
Passing data from `event.locals` to Frontend
event.locals and its available in Middleware / BE.
But how do I access that event.locals data in the frontend? Having trouble finding anything online....How does the "You might not need an effect" page from react.dev translate to SolidJS's effects?
Does solid-element support defining methods on web components?
solid-element to define my web component, because I need to define methods on it. However, now I find that I want to bind the attributes as reactive component properties, and I don't see how to do that using render(), and it appears that solid-element supports that.
I'd welcome either solution, using solid-element with methods, or not using it and achieving attributes as reactive component props....I'd like to see an example of working with a microservices API architecture