We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b54e57 commit e744d18Copy full SHA for e744d18
src/utils/database/index.ts
@@ -1,8 +1,8 @@
1
import { createClient } from "@supabase/supabase-js";
2
3
export const db = createClient(
4
- process.env.NEXT_PUBLIC_SUPABASE_URI!,
5
- process.env.NEXT_PUBLIC_SUPABASE_KEY!
+ process.env.NEXT_PUBLIC_SUPABASE_URI as string,
+ process.env.NEXT_PUBLIC_SUPABASE_KEY as string
6
);
7
8
export {
0 commit comments