kit
kit copied to clipboard
web development, streamlined
### Describe the bug Cloudflare now recommends Workers over Pages and their March 2025 SDK for Cloudflare Workers renamed the execution context for **Workers** to `platform.ctx`. The latest `npm create...
### Describe the bug In [`is_endpoint_request()`](https://github.com/sveltejs/kit/blob/f48cd60681821644dc734e3d2a72b8f94b1c55b5/packages/kit/src/runtime/server/endpoint.js#L94), the code checks: ```js negotiate(accept, ['*', 'text/html']) !== 'text/html' ``` to determine if a request should be treated as an *endpoint* request (i.e. not...
### Describe the problem There are times when we need to exclude files from compilation. Here's some examples: * An app might not have some routes in the PWA build,...
### Describe the bug Sveltekit does not react to goto navigations properly in a special case. ### Reproduction When I `goto('/users/user-[UID_SLUG]')`, it does not change the state reactively. But when...
resolves https://github.com/sveltejs/kit/issues/595 resolves https://github.com/sveltejs/kit/issues/9569 Allows building SPA sites with a relative asset path. E.g., whether server from: - `https://some.server/foo` - `https://some.server/foo/bar` - `https://some.server/foo/bar/baz` ...the SPA should be able to find...
### Describe the bug Hi! In 0.4, `@sveltejs/enhanced-img` [was built as a Svelte preprocessor](https://github.com/sveltejs/kit/blob/2129e0b9f799764400030270692b0c0a2dbbbdb5/packages/enhanced-img/src/index.js#L41), allowing it to run after mdsvex transformations. Starting in 0.5, [this is no longer the case](https://github.com/sveltejs/kit/blob/b1b7b537762cf251c526a0043d2d7d8d34a6823d/packages/enhanced-img/src/index.js#L12),...
### Describe the bug Why trying to use the [page component from web awesome](https://backers.webawesome.com/docs/components/page/) I am getting an error from sveltekit because it tries to append a child to a...
### Describe the problem SvelteKit prioritises portability — if you have something like this... ```svelte import { base } from '$app/paths'; about ``` ...but you don't know the base path...
### Describe the problem I have an expensive static page which also happens to be a protected route. I would love to prerender the page, but then it is not...
### Describe the problem In the fine-print of many API services, there is a clause to not re-distribute the data of the service API in another API. Sometimes parts of...