diff --git a/api/devlink/opportunities.ts b/api/devlink/opportunities.ts index db79b68a..9a3ff699 100644 --- a/api/devlink/opportunities.ts +++ b/api/devlink/opportunities.ts @@ -1,4 +1,4 @@ -import { supabase } from "../_supabase"; +import { supabase } from "../_supabase.js"; export default async (req: Request) => { if (req.method !== "GET") { diff --git a/api/devlink/profile.ts b/api/devlink/profile.ts index 7ce5150e..123f7c4f 100644 --- a/api/devlink/profile.ts +++ b/api/devlink/profile.ts @@ -1,4 +1,4 @@ -import { supabase } from "../_supabase"; +import { supabase } from "../_supabase.js"; export default async (req: Request) => { if (req.method !== "GET") { diff --git a/api/devlink/teams.ts b/api/devlink/teams.ts index a25d24d1..d4937db2 100644 --- a/api/devlink/teams.ts +++ b/api/devlink/teams.ts @@ -1,4 +1,4 @@ -import { supabase } from "../_supabase"; +import { supabase } from "../_supabase.js"; export default async (req: Request) => { if (req.method !== "GET") { diff --git a/api/gameforge/tasks.ts b/api/gameforge/tasks.ts index 9cea7551..6ad96f36 100644 --- a/api/gameforge/tasks.ts +++ b/api/gameforge/tasks.ts @@ -1,5 +1,5 @@ import type { VercelRequest, VercelResponse } from "@vercel/node"; -import { getAdminClient } from "../_supabase"; +import { getAdminClient } from "../_supabase.js"; const admin = getAdminClient(); diff --git a/api/roblox-callback.ts b/api/roblox-callback.ts index 319a2de8..8948305f 100644 --- a/api/roblox-callback.ts +++ b/api/roblox-callback.ts @@ -1,5 +1,5 @@ import type { VercelRequest, VercelResponse } from "@vercel/node"; -import { getAdminClient } from "./_supabase"; +import { getAdminClient } from "./_supabase.js"; export default async function handler(req: VercelRequest, res: VercelResponse) { if (req.method === "GET") {