kit icon indicating copy to clipboard operation
kit copied to clipboard

web development, streamlined

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

closes #9138 We need to add the pathnames found in the Cloudflare [`_redirects` file](https://developers.cloudflare.com/pages/configuration/redirects/) to the `exclude` array so that they are handled by Cloudflare Pages rather than the Cloudflare...

pkg:adapter-cloudflare

closes https://github.com/sveltejs/kit/issues/12550 Uses the `resolveId` hook to get the importer name before including it in the error message when loading the illegal import in the `load` hook. However, I couldn't...

feature request

### Describe the problem My problem is that my database client returns data that includes classes, and I can't return this from my `+page.server.ts` file and use it in my...

needs-decision

### Describe the problem Sometimes client-side and server-side code is tightly coupled, and it make senses to keep it together, but I don't want a bunch of `abc.server.ts` files. Instead,...

feature request

### Describe the problem I have the need to use WS and SSE subscriptions on different pages across my site. Currently, my known best way to do it is by...

feature request
needs-decision

### Describe the bug I'm getting the same false positive warnings as described in https://github.com/sveltejs/kit/issues/11671 , specifically after installing Sentry using the wizard and default settings (as described in https://docs.sentry.io/platforms/javascript/guides/sveltekit/)....

bug

### Describe the problem Let's say I have `item/[id]/+page.svelte`, which just contains: ```svelte import { page } from '$app/stores'; $: itemId = $page.params.id; Item {itemId} Item {itemId} This is the...

awaiting submitter

### Describe the problem I have seen multiple instances of `json` being used to try and return data from a form action. This seems like a fairly easy mistake to...

feature request

fixes #12236 A refactor attempt to serialize the server data before it's passed to the universal load functions. I'm sure I haven't implemented this correctly: 1. I don't think it's...

bug

### Describe the problem When using dynamically imported components as suggested in this [thread](https://github.com/sveltejs/kit/issues/9775#issuecomment-1526147626), css of all dynamically imported components is loaded. Here's [a link to the example repo](https://github.com/sviripa/sveltekit-dynamic-imports-example) and...