kit
kit copied to clipboard
web development, streamlined
### Describe the problem I am using query params on a search page to store things like `?tags=foo,bar` and when the user inputs an "empty" search (e.g. no `tags` filter),...
### Describe the bug `form` isn't supposed to be reset when calling `invalidateAll`. the `form` you get as a prop isn't reset, and the code explicitly says [Reset `form` on...
### Describe the bug When using the static adapter and prerendering the entire site, building on my local machine generates files with the `.html` extension for every route. Building on...
closes #10117 closes #1712 Cloudflare Workers allows for handlers to be exported from a worker as methods on an object exported as a default export. Currently, adapter-cloudflare-workers exports a fetch...
### Describe the problem Currently there is no way to modularize SvelteKit apps mostly due to there not being a way for a component to export its own routes. I...
### Describe the bug Via `enhance`, additional form data can be added, but reassigning the `formData` as a whole does nothing, nor does it cause a type error. ### Reproduction...
### Describe the bug When importing env variables from a web worker, the project fails to build (it works in dev mode). ``` error during build: Error: [vite]: Rollup failed...
### Describe the bug After https://github.com/sveltejs/kit/pull/13684 I get `Failed to statically analyse` when I have additional function with generics: ```ts // import {} from './config' const loadDataWithGeneric = async ()...
### Describe the problem [The documentation for `page`](https://svelte.dev/docs/kit/$app-state#page) from `$app/state` currently shows the type of the `page` state like this: ```ts const page: import('@sveltejs/kit').Page; ``` Which isn't very useful. If...
### Describe the problem `getRequestEvent` is great! It simplified my trpc package greatly by allowing library functions to access `event.locals` without passing it in all the time. However, because it...