Conduitry

Results 524 comments of Conduitry

The root `+error.svelte` _also_ appears inside the root `+layout.svelte`. What happens during SSR if there is an error rendering `+error.svelte` or its `+layout.svelte` is that it displays a very simple...

Please provide a link to a minimal reproduction as requested in the issue template. A link to a deployed application without source is not a reproduction.

Closing due to inactivity.

I was just taking a peek at what might be involved in implementing this, and I realized I wasn't clear on what the desired behavior was, exactly. Should the `event`...

Looking at this again, maybe we already have what we need with `state.depth`? Maybe `respond()` can just construct the `event` object with `isSyntheticRequest: state.depth > 0`?

What's the `migrate` readme change? Can that go in its own PR?

The `@sveltejs/kit` `exports` map already includes `./package.json`, so you should be able to just: ```js import pkg from '@sveltejs/kit/package.json' assert { type: 'json' }; console.log(pkg.version); ```

That's fair. It would be nice if we could get this to work somehow other than adding more moving parts to automatically update this file, but I'm not sure that...

This sounds like the expected - if unfortunate in this case - behavior to me. Browsers seem to cache fairly aggressively when duplicating tabs. If the request does make it...

It does seem useful, but I can't decide how I feel about quietly mutating the `Response` explicitly returned from an endpoint handler and returning a different response with an additional...