7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import Stripe from 'stripe';
|
|
|
|
export const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!, {
|
|
apiVersion: '2025-01-27.acacia' as any, // Use the latest stable version
|
|
typescript: true,
|
|
});
|