Results 353 comments of Tee Ming

> I had the same issue, I was able to fix it by just importing the CSS normally via the `script` tag instead of using the Svelte `style` tag like...

The issue stems from not handling errors thrown while rendering the root error page. If an error occurs during hydration, such as a 404 missing route, we load the root...

> I've run into an issue today with redirect form actions and setting headers. I thought form actions would work like post server endpoint and returning a response with redirect...

I'll admit I've never used this option and was confused by the documentation. However, at the top of the page it does mention: >These options also apply to `` elements...

> This wraps the error in a Proxy that fixes the stacktrace when the stack property is accessed. Problem: when running on the console or in IDEs such as IntelliJ...

The fix in https://github.com/sveltejs/kit/issues/10138#issuecomment-1586322267 only fixed some server stack traces, but I think errors occurring during module importing have the wrong line numbers as well. You can see the wrong...

closed by https://github.com/sveltejs/kit/pull/10187

I can't seem to reproduce this. The build works when I try it in stackblitz. Can you confirm if it still broken on your end?

Just a heads up: the merge conflict comes from `throw redirect()` now being able to accept a `URL` object in addition to a `string`. I'm not sure we can really...

> 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...