solid-start icon indicating copy to clipboard operation
solid-start copied to clipboard

SolidStart, the Solid app framework

Results 393 solid-start issues
Sort by recently updated
recently updated
newest added

As per this comment: https://twitter.com/lcasdev/status/1516838233359122434?s=20&t=ufhOOm_SiqHszQPWK0wmHQ, we should be able to stream the static assets from the Deno adapter ```ts const file = await Deno.open(`.${pathname}`); // Respond to the request with...

enhancement

I want to use https on local, so i create key and cert with using mkcert. I rewrite vite.config.js as follows to use https on the local host, but an...

bug
help wanted

Hi, It would be nice to have an option like the [`sveltekit package`](https://kit.svelte.dev/docs#packaging) to allow people to create library without the pain to configure rollup or vite build config, add...

enhancement

Obviously this package is a WIP, but as an eventual documentation (or maybe feature) request: Having some guidance on how to load different code on the server vs on the...

documentation

example usage: `src/entry-client.tsx` ```tsx import { render } from "solid-js/web"; import { hashIntegration } from "solid-app-router"; import { StartClient } from "solid-start/entry-client"; render(() => , document.body); ``` example change: `packages/start/entry-client/StartClient.tsx`...

enhancement

I have a repo that builds on top of solid-start here: https://github.com/nikitavoloboev/nikitavoloboev I have a pdf file in public called `cv.pdf`: https://github.com/nikitavoloboev/nikitavoloboev/blob/main/public/cv.pdf If I for example do this: https://github.com/nikitavoloboev/nikitavoloboev/blob/a0ab2a594e77e0cbcc450de56099a15aa4691c06/src/components/Nav.tsx#L37 ```...

documentation

The example shown in the **Fetching data based on search params** section of the [useSearchParams() docs](https://start.solidjs.com/api/useSearchParams) suggests we should be able to pass url query parameters to fetcher functions within...

When you have a routeData with more than 3 createServerData$ inside of it, it won't call all 3 of them consistently. I can create a reproducible environment if needed. Logs...