Client renders in dev mode, but not once built
npm run dev it works fine and I can build and debug as expected. When I use npm run build then npm run start, the client does not render my index.tsx page, but the server does indeed work as expected. I am not using any ssr in my vite plugin config.
Not sure what's going on as most of it is as generated by the solid start template, and seems to match the docs. I'm assuming it's not an issue with the file structure as it works fine in dev mode, and remains unchanged from the template.
package.json important parts...Good practices in SolidJS
Variable initialized in `onMount` becomes `undefined`
Cannot build on server
vite build "-v"...

Solid-Element Custom Elements Manifest
What's the SEO situation like with solid?
Can't start the server with https enabled on Start
server: { https: { key: './key.pem', cert: './certificate.pem' } },
server: { https: { key: './key.pem', cert: './certificate.pem' } },
Jest, TypeScript, and @solidjs/router
@solidjs/router, jest chokes. I tried reading the documentation linked in the error, but I didn't see anything obviously wrong. Do I need to set up additional configs for @solidjs/router or is there a bug in that package?
Here's a piece of the error:
```
Details:...Any pattern to avoid getting ts angry when using route data fields?

Is there some equivalent to <Portal/> that is also compatible with ssr?
<Portal/> component from solid-js/web, but obviously it doesn't work, because it's in the solid-js/web packageRecommended way to track the setter of a signal?
createEffect(on(...)), but it may be excessive to create multiple effects solely for target signals.
With that in mind, what would be the recommended method in this case?...Is it possible to pass paramters a function wrapped by a createEffect/createMemo?
Is it possible to implement LiveViewJS type functionality using SolidJS + SSR?
Need to pass a function as a dependency to the solid js web component.
Adding components that use context to the DOM after mount
Fetching data with authorisation token
For loop in route breaks when form in another component is submitted

input elements become empty upon hydration
Missing Http method returns 200 status code on api route

Why does (return new Response(({'error' : ""}), {status : code})) not work
return new Response(({'error' : "No ID provided"}), {status : 500})
return new Response(({'error' : "No ID provided"}), {status : 500})