kit
kit copied to clipboard
web development, streamlined
### Describe the problem For context, I'm building a cross-framework component library so I've set up a standard package structure for each framework in my monorepo with npm workspaces. I'm...
### Describe the bug Let me know if I'm just being dumb but I think I noticed a subtle flaw in the implementation of the `handleFetch` hook [here](https://kit.svelte.dev/docs/hooks#server-hooks-handlefetch): ```js export...
### Describe the bug Since https://github.com/sveltejs/kit/pull/6565 doing external fetch in a load function will fail with `Failed to get the 'mode' property on 'Request'` on Cloudflare Workers. ### Reproduction The...
### Describe the problem In Next.js it is possible to deploy an endpoint as a [Vercel edge function](https://vercel.com/docs/concepts/functions/edge-functions). Contrary to the global `edge: boolean` option of SvelteKit `adapter-vercel`, it is...
Let's say I have a `_layout.svelte` like the following: ```html Some other intermediate stuff. ``` And now I have a child view (let's call it `homepage.svelte` which inherits that layout,...
### Describe the bug [Vercel edge middleware](https://vercel.com/docs/concepts/functions/edge-middleware#creating-edge-middleware) breaks endpoints. Tested with server less and edge functions which both result in a 404 when called. Vercel logs show that 2 edge...
### Describe the problem In Svelte, you can play transitions on initial render by setting `intro: true` in the [component constructor](https://svelte.dev/docs#Creating_a_component). There doesn't seem to be a way to do...
### Describe the problem As of #5291 SvelteKit now supports using `ReadableStream` to read the request body in endpoints and supports returning it as a response body, however there are...
### Describe the problem When implementing auth, it's impossible to run load functions in parallel. This is roughly how auth are implemented right now: 1. Check for the user in...
### Describe the problem if i want to add Basic auth Header for the Client Side, i need to add everywhere the header. But i want to add that header...