mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-30 16:43:37 +00:00
8 lines
241 B
TypeScript
8 lines
241 B
TypeScript
import { PrismaClient } from '@prisma/client/edge';
|
|
import { withAccelerate } from '@prisma/extension-accelerate';
|
|
|
|
declare global {
|
|
var prisma: PrismaClient | undefined;
|
|
}
|
|
|
|
export const db = new PrismaClient().$extends(withAccelerate());
|