Conduitry
Conduitry
#11794 is a potential thing to change. I don't have a very strong opinion about what the behavior should be here, but I do have a strong opinion that we...
Cookies should definitely not be signed by default, because there's no such thing in the cookie spec as a signed cookie - it's just a cookie with extra data appended...
If `dev` and `preview` are behaving differently from one another, this does sound like a bug of some sort to me.
I don't think we need to support this in the framework. You can disable the built-in prefetching and then programmatically call https://kit.svelte.dev/docs/modules#$app-navigation-prefetch triggered by whatever you want.
IIRC, the stack trace check in `fetcher.js` was written that way so as to avoid giving false positives for the warning when a `fetch` happened to be called when a...
Does it work if you make html-minifier a prod dependency so the build doesn't try to bundle it? If it does, we should probably add that to the docs, because...
I'm not sure about this. I'm concerned that, in trying to be helpful, this would actually cause more confusion. The other existing auto adapters are set up to be pretty...
Maybe we could have a link to https://developer.mozilla.org/en-US/docs/Web/HTTP/Status somewhere, but I don't think we ought to be doing more than that. These status codes have been around a very long...
You can also just do `new URLSearchParams({ foo: 'bar' })` which seems sufficient to me. You don't even need to call `.toString()` inside a template string because that will happen...
If there's some library or something that compresses responses on the fly but doesn't correctly update the `content-length` header, that's certainly a bug in that library. I think we should...