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

The `solid-start-aws` adapter allows to deploy the server function to both AWS Lambda and Lambda@Edge. This adapter takes a standard Lambda event payload, and returns a standard Lambda response. For...

adapter

`vite.config.js`: ```typescript import solid from "solid-start/vite"; import pages from "solid-start-cloudflare-pages"; import { defineConfig } from "vite"; export default defineConfig({ plugins: [ solid({ adapter: pages({ wranglerConfigPath: true, }), }), ], });...

> https://stackblitz.com/edit/github-pkoqsx?file=src%2Froot.tsx ```ts import { mergeProps } from 'solid-js'; // @refresh reload export default function Root() { const props = mergeProps( { value: 1, }, { get value() { return...

Good day! I've ported a library to `solid-js` and was using `vite-plugin-solid` without any configuration. It was brought to my attention that users are getting the following error when they...

I tried to fix the types of the .ts files. Next step would be to move .js files to .ts one after another.

having fun with aws we not using AWS, so no ideas about that one and another one we have no idea about

Hi, First of all I really enjoyed testing solid-start! thanks for the hard work. I was unable to build & start an application that is using sqlite3, nor better-sqlite3, and...

Currently enviroment variables that are not prefixed with `VITE_` will not be loaded, variables that are prefixed with `VITE_` will be exposed to the client (`import.meta.env`), what causing it so...

It looks like the build is succeeding even if Solid Start specific transformations using esbuild fails. I would expect it to exit with non-0 code so it would properly fail...