create patches folder at root level of the project with this filename: expo-audio+0.4.6.patch
npm i patch-package --save-dev
update package.json
import "jsr:@supabase/functions-js/edge-runtime.d.ts"; | |
import { createClient } from "jsr:@supabase/supabase-js@2"; | |
import { create, verify } from "https://deno.land/x/[email protected]/mod.ts"; | |
const supabase = createClient( | |
Deno.env.get("SUPABASE_URL")!, | |
Deno.env.get("SUPABASE_SERVICE_ROLE_KEY")! | |
); | |
const REVENUECAT_SECRET = Deno.env.get("RC_SECRET")!; |
Previously, I've had some problem to reliaby configure code formatting with Prettier in VSCode, in the context of a create-react-app proejct. Today, it worked like a charm, and this is what I did.
react-scripts: "3.1.1"
react: "^16.9.0"
react-dom: "^16.9.0"