Essa Alshammri
Essa Alshammri
have you found a solution for this?
never mind it just works now :) after changing the export line from: ```typescript const prismaClient = new PrismaClient(); export { prismaClient }; ``` to: ```typescript const prismaClient = new...
to be precise my prisma.ts file looks like this: ```typescript import { PrismaClient } from '@prisma/client'; import { env } from '$env/dynamic/private'; const prismaClient = global.__prisma || new PrismaClient(); if...