jill64

Results 5 comments of jill64

Hello everyone. Until the Cloudflare adapter is officially supported, I have created a simple library that is a solution to this problem. Based on the escape hatch mentioned above, I...

No, I have not tried it yet, but I believe it is possible. Since it depends on `@sentry/node`, it is not possible to import from the `@sentry/sveltekit` package, but I...

As a workaround, [@jill64/sentry-sveltekit-cloudflare](https://github.com/jill64/sentry-sveltekit-cloudflare) is still available. [@jill64/sentry-sveltekit-edge](https://github.com/jill64/sentry-sveltekit-edge) is also available, which works with `vercel`, `netlify`, and other edges in general, although some functionality is limited.

As you may already know, the @RyousukeUchino proposal may suppress warnings, but is not recommended in hot code paths. https://svelte.dev/docs/svelte-store#get >This works by creating a subscription, reading the value, then...

@unlocomqx The following can be used as a workaround ## Disable in one line ```svelte import { page } from '$app/stores'; // eslint-disable-next-line svelte/valid-compile const currentPagePath = $page.url.pathname; ``` ##...