Results 344 comments of Tee Ming

> @eltigerchino @Conduitry Do you want me to close this ticket and open a new one that is the new problem? (Version changes cause most client chunks to generate a...

> 3. Append a tag to the document body and call the click() method. This would probably be the most consistent with a traditional hash link. But we might need...

The "fetch to read asset" concept should also work for cloudflare pages I think

Seems to be working quite nicely with @vercel/og on the edge https://svelte-og-image.vercel.app/ https://github.com/eltigerchino/svelte-og-image/blob/main/src/routes/og/%2Bserver.ts The image below is rendered at the edge from https://svelte-og-image.vercel.app/og?title=Svelte%20OG%20Image ![svelte og](https://svelte-og-image.vercel.app/og?title=Svelte%20OG%20Image)

I've tested this and it happens on Svelte 4 too

I'm so sorry. This definitely slipped through and I forgot about it. I'm currently investigating it and a solution seems close. Something is setting the URL to the previous URL...

> Are the docs wrong when they say to place this file in `static` and it will work? > > https://kit.svelte.dev/docs/adapter-cloudflare#notes No, the docs are correct. @nosovk may I know...

> We have [site](https://b4ukraine.org/), which is hosted on Cloudflare pages. Currently, we need to change URL structure (rename categories, move articles over the categories etc.). When we move pages we...

https://github.com/sveltejs/kit/pull/9111 allows manually excluding routes. Should the adapter warn the developer when a _redirects file is found and certain routes aren't excluded? Or should the adapter try to automatically include...

Here's a workaround in the meantime that reads the `_redirects` file and excludes the routes. ```js // svelte.config.js const redirects = readFileSync('./static/_redirects', 'utf8') .split('\n') .filter(Boolean) .map((line) => { const [from]...