7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
import { loadStripe } from '@stripe/stripe-js';
|
|
|
|
// Initialize Stripe on the client
|
|
export const getStripe = () => {
|
|
const stripePromise = loadStripe(process.env.NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY!);
|
|
return stripePromise;
|
|
};
|