kit
kit copied to clipboard
web development, streamlined
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@netlify/edge-functions](https://redirect.github.com/netlify/primitives) ([source](https://redirect.github.com/netlify/primitives/tree/HEAD/packages/edge-functions/prod)) | [`^2.15.1` -> `^3.0.0`](https://renovatebot.com/diffs/npm/@netlify%2fedge-functions/2.15.1/3.0.3) |  |  | --- ###...
### Describe the bug handleFetch hook receive empty event object after 2.31.0 sveltekit upgrade. For ssr http calls handleFetch act as an http interceptor and we add auth details via...
### Describe the problem SvelteKit `query`s implement _client side_ caching for, as far as I can tell, the following reasons 1) De-duplicating identical requests made during the same page load....
### Describe the bug If you have a `src/instrumentation.server.ts` file along with the [experimental flag](https://svelte.dev/docs/kit/observability) it will run when you do `vite dev`. It should also run when you do...
### Describe the bug ``` D:\_\SRC\ROUTES │ +layout.svelte │ +page.svelte └─a └─b +page.svelte ``` `resolve('/a')` does not show a type error, even if the route does not exist: ```svelte import...
### Describe the bug SvelteKit has the following warning ([source](https://github.com/sveltejs/kit/blob/7fe38957490feb018e6d8df4d71b5a9b29487ca4/packages/kit/src/runtime/server/page/render.js#L195)): > Avoid calling `fetch` eagerly during server-side rendering — put your `fetch` calls inside `onMount` or a `load` function instead...
Resolves #15035 This PR is **an attempt** at hopefully guiding someone in the right direction. I made a best effort to put forward a solution to the issue but ultimately...
### Describe the bug Prerendered functions don't work with SSR in Cloudflare Workers. When I disable ssr with `export const ssr = false`, the issue no longer persists. ### Reproduction...
### Describe the bug When calling a [command](https://svelte.dev/docs/kit/remote-functions#command) from an API endpoint, the server throws a 500 error with the message `Cannot call a command during server-side rendering`, even when...
If we have `routes/path-a/+page.svelte` The function `resolve()` propose us two options today ```ts resolve('/path-a') resolve('/path-a/') ``` As trailing slash default is `never`, I would expect that `resolve('/path-a/')` is not available....