17 lines
471 B
TypeScript
17 lines
471 B
TypeScript
"use client";
|
|
|
|
import { ConvexProvider, ConvexReactClient } from "convex/react";
|
|
import type { ReactNode } from "react";
|
|
|
|
const convexUrl = process.env.NEXT_PUBLIC_CONVEX_URL;
|
|
|
|
if (!convexUrl) {
|
|
throw new Error("Missing NEXT_PUBLIC_CONVEX_URL in the environment.");
|
|
}
|
|
|
|
const convex = new ConvexReactClient(convexUrl);
|
|
|
|
export function ConvexClientProvider({ children }: { children: ReactNode }) {
|
|
return <ConvexProvider client={convex}>{children}</ConvexProvider>;
|
|
}
|