Tee Ming
Tee Ming
Thanks! The repro works well and I've tested the fix with it. Can you add a test for this? Maybe in one of the other test suite folders we could...
closing as resolved in https://github.com/sveltejs/kit/issues/12499#issuecomment-2320091512
> Is this only about silencing that exact error? I think it's more about control of whether a route should error if it's not prerendered, which are only some routes...
Based on https://github.com/sveltejs/kit/issues/13835 we should probably throw a better error message here (and document this?)
Thanks, that's a good suggestion. I've added a link to the [_routes.json documentation](https://developers.cloudflare.com/pages/functions/routing/#create-a-_routesjson-file). [`77dc208` (#12821)](https://github.com/sveltejs/kit/pull/12821/commits/77dc20860491d37c936f6ec27380a492b096d392)
> Is this still all correct now that there was a breaking change about the other things that no longer are in the `static` directory? Thanks for the reminder. I...
I think the simplest fix for this is to shallow clone the object because: 1. serialising the server data earlier requires awaiting all the server loads and it also messes...
Unfortunately, this isn't so straightforward. I've tried disabling the CSS splitting but it causes the final build to not load any CSS at all. Maybe related to https://github.com/vitejs/vite/issues/1579 where disabling...
I've fixed the build test that was failing. It involved the newly added test expecting a request URL from the route path instead of the chunk path (which is used...
`pushState` and `replaceState` do not perform an actual navigation (shallow navigation) as it does not change the underlying route. The only things that do change are: * The browser URL....