solid-start
solid-start copied to clipboard
SolidStart, the Solid app framework
**Reproduction:** Use the default solid-start starter with the static adapter and in `vite.config.ts`, you set `base: ""` or `base: "./"`. Run `npm run build` (or pnpm or yarn). **Expected outcome:**...
issue --- by default `start` will build with the 'node' adapter. Just adding an adapter package( `solid-start-*` ), will change the adapter to one of the installed adapters. with multiple...
## the error thrown ``` Error: ENOENT: no such file or directory, copyfile '/home/nrb/tst/.solid/server/entry-server.js' -> '/home/nrb/tst/.solid/server/handler.js' at copyFileSync (node:fs:2866:3) at Object.build (file:///home/nrb/tst/node_modules/solid-start-node/index.js:32:7) ``` ## config ``` build: { rollupOptions: {...
### Describe the bug The component imported using `lazy(() => import("Component"))` does not import the CSS file in SSR ### Your Example Website or App https://github.com/33kk/solid-ssr-test ### Steps to Reproduce...
It was reported to me that refetchRouteData was triggering Suspense fallbacks. It should not. It should instead start a Transition and we should use pending state to indicate that it...
When using `createRouteAction` or `createServerAction$` to handle forms, if the server action issues a redirect, the client-side code will always perform a new navigation even if the redirect is to...
When using solid-start with tailwind, it creates multiple instances of the generated css styles.  These two contains identical css It seems to also include more duplication from the pages...
## Summary The adapter solid-start-cloudflare-workers pulls in "node" exports of dependencies by default. This makes sense for solid-js framework and possibly precompiled Solid Components in node_modules. However, for many other...
repro steps --- ``` 1. pnpm create solid 1.1 selected options: template:bare ssr:yes typescript:yes 3. pnpm add -d solid-start-static 4. pnpm build ``` build log --- ```log solid-start build version...