kit icon indicating copy to clipboard operation
kit copied to clipboard

web development, streamlined

Results 1158 kit issues
Sort by recently updated
recently updated
newest added

fixes #14972 The issue happens when you assign `form.fields` to a variable and then attempt to access `.value()`. As a result, this results in a hydration mismatch. ```ts const fields...

### Describe the problem I haven't been able to find a way to write unit tests of remote functions without involving hacks that use SvelteKit internals. I can import the...

### Describe the bug The issue happens when you assign `form.fields` to a variable and then attempt to access `.value()`. This: ```ts const fields = test.fields; const initial = await...

closes https://github.com/sveltejs/kit/issues/13692 closes https://github.com/sveltejs/kit/issues/1712 part of https://github.com/sveltejs/kit/issues/3535 closes https://github.com/sveltejs/kit/pull/13739 closes https://github.com/sveltejs/kit/pull/13357 closes https://github.com/sveltejs/kit/pull/12637 w.i.p and still has a lot of problems to solve. Needed to open this PR to test...

vite
breaking change
pkg:adapter-cloudflare

### Describe the problem i can't seem to get the error message of a remote async function to the frontend, when it throws an error. [e.g. in an async onclick...

awaiting submitter

This prevents a redirect that a remote function could do from doing a navigation in a fork. Leverages Svelte's new forking methods from https://github.com/sveltejs/svelte/pull/17217 It's implemented by putting the context...

### Describe the bug Route with remote `query` which has `redirect` results in 500 `undefined` error. [Route](https://github.com/vladshcherbin/sveltekit-redirect-error/blob/master/src/routes/private/%2Bpage.svelte): ```svelte import { verifyUser } from "$lib/remote/auth.remote"; await verifyUser() protected ``` [Remote `query`](https://github.com/vladshcherbin/sveltekit-redirect-error/blob/master/src/lib/remote/auth.remote.ts):...

### Describe the bug The following triggers an infinite loop where `pending_count` is constantly updated. ```svelte import { mark_seen } from '$lib/foo.remote.ts'; const { params } = $props(); $effect(() =>...

### Describe the problem Sometimes if helpful to show an error message on screen with the result of a command. This can be done with local state. But it feels...

### Describe the problem I have a monorepo in which I have `/packages` and `/sites`. The sites use the local (workspace) packages. Therefore, I have to build the package every...

documentation
pkg:svelte-package