solid-start
solid-start copied to clipboard
SolidStart, the Solid app framework
It is very difficult to locate the error without a stack trace. https://github.com/solidjs/solid-start/blob/main/packages/start/dev/server.js#L26
Currently, the MIME types of any uploaded files aren't passed through to the File constructor, so `file.type` is always `''` (empty string). This fixes that, by passing through what the...
Hi, now that deno's `npm:` specifiers have become standardized, I am hoping I can get solid-start up and running in deno. Unfortunately I cannot create a new project using the...
Hi all, I found out that Solid Start ignores configuration from `vite.config.ts` I tried to run the app on a different port than `3000`: ``` export default defineConfig({ plugins: [solid()],...
Fails compiling Uploadcare https://uploadcare.com/docs/uploads/file-uploader/#npm. For example at a route page, user imports uploadcare ```jsx import { onMount } from "solid-js"; import uploadcare from "uploadcare-widget"; const Home = () => {...
When using `start-cloudflare-pages` adapter, all requests by default will invoke Cloudflare Function which will ramp up the daily limit. To avoid static assets to invoke CF Function, as per their...
When I make a change to a server-side module, the solid-start server restarts, but doesn't actually load the new code. I have to manually ctrl-c the server process and re-run...
I wanted to add a 'viewCount' to my app showing the number of times a given thread was viewed. The approach I took was to update the database when fetching...
# Summary Due to a few assumptions made within `solid-start` - usage within a monorepo with hoisting (npm or yarn) enabled can lead to a few things breaking, which is...