Conduitry

Results 524 comments of Conduitry

I don't know what this issue is actually requesting, and I don't know what different code would be generated during `create-svelte` is you said you did want to use an...

I don't think we necessarily want to hold up v1 for this. That ESLint plugin will need to be more thoroughly vetted and brought under the sveltejs org before we...

This is fairly easy to do now simply be reproducing SvelteKit's current CSRF check logic (it's pretty simple) in your `handle` hook, but wrapped in whatever additional check with `event.routeId`...

What happens right now if any of these aren't promises? How much time do we waste in that (common) case? What happens if one of the promises rejects? What sort...

I _would_ say that this whole feature is sort of unnecessary and I would like to get rid of it, but then I am confronted with the fact that it...

Is the idea to use this during SSR as well? The would be a pretty big change and I honestly have no idea what that would look like yet, because...

Can you use https://vitejs.dev/config/server-options.html#server-https to serve HTTPS directly during development rather than using a proxy?

How would you have `/[locale?]/[...slug]` match? That seems to fall into the same problem as `/[...locale]/[...slug]`.

I'm going to assume you're specifically talking about apps using the Node adapter. Releasing resources when what? When the server process terminates? What sorts of resources are you concerned about...

Again: What sorts of resources? And are you deploying a production build anywhere? If you're just using `npm run dev` (or `npm run preview`) locally, then what adapter you have...