kit
kit copied to clipboard
web development, streamlined
### Describe the problem In my app I have components that depend on images being processed by `@sveltejs/enhanced-img`. A common pattern for me is to import an image processed by...
### Describe the bug When navigating via link to a route that redirects, the client router doesn't strip the trailing slash, causing the relative redirect to be based in the...
Server fetches not being tracked is documented in https://svelte.dev/docs/kit/load#Rerunning-load-functions-When-do-load-functions-rerun and https://svelte.dev/docs/kit/load#Rerunning-load-functions-Manual-invalidation but could also be mentioned in the `fetch` and `depends` functions of https://svelte.dev/docs/kit/@sveltejs-kit#LoadEvent and https://svelte.dev/docs/kit/$app-navigation#invalidate The comment in https://github.com/sveltejs/kit/blob/969ec95c1baeb8a0b070fcbc7dae38d577242030/packages/kit/src/runtime/server/page/load_data.js#L83...
### Describe the bug Even when csr=false I still get the js bundle chunks in the final build. If I delete the files, the site will still work, but it...
### Describe the bug Calling `pushState()` inside of `$effect()` seems to cause an infinite loop, re-invoking the same `$effect()` over and over again. (Not sure if this is a bug...
closes #3498 ⚠️ Work in Progress (feedback/suggestions/comments welcome) ⚠️ This PR is an attempt to introduce a minimally-viable version of rendering in Service Workers. It uses the API previously attempted...
### Describe the problem Currently the way to force the revalidation of an ISR page is to query the server like this: > `GET` or `HEAD` request with `x-prerender-revalidate: `...
### Describe the bug We have been running into issues with deployments and realized that `/_app/env.js` is cached by cloudflare due to a missing cache buster in the filename. A...
### Describe the bug When doing two sequential fetch calls on `+page.sever.ts` in a streammed promise I get a warning ``` src/routes/+page.server.js: Calling `event.fetch(...)` in a promise handler after `load(...)`...
### Describe the problem Data preloading is often enabled site-wide by including `data-sveltekit-preload-data="hover"` in `app.html`. This can then be disabled/enabled per-section/link, which is not ideal. Also, I am not quite...