diff --git a/nuxt.config.ts b/nuxt.config.ts index e703db7..77370be 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -21,10 +21,5 @@ export default defineNuxtConfig({ login: "/auth/login", callback: "/auth/redirect", }, - clientOptions: { - auth: { - flowType: "pkce", - }, - }, }, }); diff --git a/package-lock.json b/package-lock.json index be8d6aa..536bddc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2877,15 +2877,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@supabase/auth-js": { - "version": "2.63.0", - "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.63.0.tgz", - "integrity": "sha512-yIgcHnlgv24GxHtVGUhwGqAFDyJkPIC/xjx7HostN08A8yCy8HIfl4JEkTKyBqD1v1L05jNEJOUke4Lf4O1+Qg==", - "dev": true, - "dependencies": { - "@supabase/node-fetch": "^2.6.14" - } - }, "node_modules/@supabase/functions-js": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.2.2.tgz", @@ -2951,6 +2942,15 @@ "@supabase/storage-js": "2.5.5" } }, + "node_modules/@supabase/supabase-js/node_modules/@supabase/auth-js": { + "version": "2.62.0", + "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.62.0.tgz", + "integrity": "sha512-2pkOkd+NBBbLazy2IswnqahEBQTM4fB+U0HiNO/+mUrPCjCZV6RKhzt1AX4SqFfVW5eOENsh0vVc8IcACSpiTg==", + "dev": true, + "dependencies": { + "@supabase/node-fetch": "^2.6.14" + } + }, "node_modules/@tailwindcss/aspect-ratio": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz", @@ -14004,15 +14004,6 @@ "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==" }, - "@supabase/auth-js": { - "version": "2.63.0", - "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.63.0.tgz", - "integrity": "sha512-yIgcHnlgv24GxHtVGUhwGqAFDyJkPIC/xjx7HostN08A8yCy8HIfl4JEkTKyBqD1v1L05jNEJOUke4Lf4O1+Qg==", - "dev": true, - "requires": { - "@supabase/node-fetch": "^2.6.14" - } - }, "@supabase/functions-js": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.2.2.tgz", @@ -14067,12 +14058,23 @@ "integrity": "sha512-xmECLhYugMo/6SObpsOhu5xaxVfsk+JK/d4JSh055bpESmgmN3PLpzbfqejKCpaUeeUNF21+lrJp/U9HQzT9mA==", "dev": true, "requires": { - "@supabase/auth-js": "2.63.0", + "@supabase/auth-js": "2.62.0", "@supabase/functions-js": "2.2.2", "@supabase/node-fetch": "2.6.15", "@supabase/postgrest-js": "1.9.2", "@supabase/realtime-js": "2.9.3", "@supabase/storage-js": "2.5.5" + }, + "dependencies": { + "@supabase/auth-js": { + "version": "2.62.0", + "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.62.0.tgz", + "integrity": "sha512-2pkOkd+NBBbLazy2IswnqahEBQTM4fB+U0HiNO/+mUrPCjCZV6RKhzt1AX4SqFfVW5eOENsh0vVc8IcACSpiTg==", + "dev": true, + "requires": { + "@supabase/node-fetch": "^2.6.14" + } + } } }, "@tailwindcss/aspect-ratio": { diff --git a/package.json b/package.json index c02c038..cfc165e 100644 --- a/package.json +++ b/package.json @@ -17,5 +17,8 @@ }, "devDependencies": { "@nuxtjs/supabase": "^1.2.0" + }, + "overrides": { + "@supabase/auth-js": "2.62.0" } }