Fred Guest
Fred Guest
For anyone running into this, apparently you can bypass the `supabase.auth` module entirely and still implement RLS, which is actually not a bad solution https://github.com/supabase/supabase/discussions/1849
What I linked to is a solution for implementing RLS in the Supabase DB without using the `supabase.auth` module at all. It's not meant to be a solution for obtaining...
In the mean time, this kind of thing is a good solution: "Cache Supabase data at the Edge with Cloudflare Workers and KV Storage" https://egghead.io/courses/cache-supabase-data-at-the-edge-with-cloudflare-workers-and-kv-storage-883c7959
Along the same lines, if a project depends on the plugin and the parser as in: ``` "@typescript-eslint/eslint-plugin": "^8.0.0-alpha.10", "@typescript-eslint/parser": "^8.0.0-alpha.10", ``` you get the following error: ``` Could not...
@bradzacher cheers 👍
@ak4zh Yes, unfortunately that does not work as advertised in this case. Even using `Stripe.createFetchHttpClient()` you get this in the build logs: ``` 2022-09-04T13:18:42.380596Z 2022-09-04T13:18:42.380817Z > Using @sveltejs/adapter-cloudflare 2022-09-04T13:18:42.578683Z ✘...
Hey @mglikesbikes, ya the @sveltejs/adapter-cloudflare adapter is specifically designed only for use with Pages, so that's what I'm using. When you use this adapter you get the benefit of auto...
This issue has been fixed by this PR https://github.com/stripe/stripe-node/pull/1679 on the Stripe library. Sveltekit + Cloudflare Pages Workers + Stripe now work together happily, without hacks or extra configs. 🤘
@mblomdahl this PR would be handy, any reason it can't be merged?
I just ran into this and setting the `.node-version` file to `18.18.0` and the Cloudflare `NODE_VERSION` env var to `18` did not solve the issue. As an alternate solution, if...