Results 353 comments of Tee Ming

> > Sorry about this one! One of the pages/workers predicates is returning falsely. The correct behaviour here is that the build should error and warn you that you need...

Please provide a **minimal** reproduction and clearly describe what is not working: what error is shown?. Do not link your entire project as the number of dependencies makes it difficult...

Looks good to me. @benmccann was there a reason we didn't use link tags to preload stylesheets even before we added Link headers in https://github.com/sveltejs/kit/pull/5735 ?

> @benmccann That's fair, do you think it would be in-scope to have `adapter-cloudflare` output any `Link` headers in prerendered pages to Cloudflare's `_headers` file instead of the changes in...

LGTM. @benmccann what do you think? It has a config option defaulting to false at the moment so it shouldn't break anything. cc: @jamesopstad https://github.com/sveltejs/kit/pull/12247#issuecomment-2179449663

> We have this problem as we use a global `scss` file. > > I monkey patched kit, this line: [`@sveltejs`/[email protected]/packages/kit/src/exports/vite/dev/index.js#L205](https://github.com/sveltejs/kit/blob/@sveltejs/[email protected]/packages/kit/src/exports/vite/dev/index.js#L205) > > ```diff > - !(query.has('raw') || query.has('url') ||...

Would a conditional in the fallback method handler fit your needs? https://kit.svelte.dev/docs/routing#server-fallback-method-handler . Our motivation for adding this was so that sveltekit wouldn't need to check an indefinite list of...

Thanks for all the information on websockets, especially since I don't have much understanding of it yet. Reading through the main websocket issue, it seems there are a few workarounds...

Do I just need to link svelte-migrate globally and then run it inside a project? I’d try it on my Macbook just out of curiosity 😁

Some feedback from one file with issues: 1. Previously, you could do this for uninitialised reactive state: ```ts let containerElement: HTMLElement; ``` But when `$state` is added by the migration,...