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 `graphql` package generates objects with `null` prototypes. When these objects are returned from `createServerData$`, they get serialized as `Object.assign(Object.create(null), { ...props... }))`. Unfortunately, it looks like the code generator...

When you use the CLI to initialize a project, the default option for 'Use TypeScript' is false. So when you just press enter, it will select JavaScript My proposal is...

As mentioned in #419 this would enable having dotfile and `.well-known` paths in file based routing

`fast-glob` ignores dotfiles by default so the following line will ignore a `.well-known` directory and any other dotfiles when using the `FileRoutes` https://github.com/solidjs/solid-start/blob/842f2751795a181ec3a9975f18a008344192535a/packages/start/fs-router/router.js#L46 I'm not sure if this was an...

Added missing dependency for `with-websocket` example. Related to https://github.com/solidjs/solid-start/issues/417

# Overview Seems like the `with-websocket` example is missing the `@solid-start/meta` dependency which causes the dev server to crash. ## Output Error: Cannot find module '@solidjs/meta' imported from '.../node_modules/solid-start/entry-server/StartServer.tsx' ##...

Added a little more detail and some helpful links to the docs.

Trying islands on the new version. But as soon as I try to call `unstable_island` with a component, ```ts const Counter = unstable_island(() => import('~/components/Counter')); ``` there is a log...

Just wanted to run one of the examples but receive error on production mode. Commands ran: ``` npm run build npm run start ``` Result: `Error [ERR_MODULE_NOT_FOUND]: Cannot find module...

This PR adds an example of using [UnoCSS](https://github.com/unocss/unocss) in SolidStart.

example