Bård
06/30/2021, 8:41 AMimport { PrismaClient } from '@prisma/client';
// add prisma to the NodeJS global type
interface CustomNodeJsGlobal extends NodeJS.Global {
prisma: PrismaClient;
}
// Prevent multiple instances of Prisma Client in development
declare const global: CustomNodeJsGlobal;
const prisma = global.prisma || new PrismaClient();
if (process.env.NODE_ENV === 'development') global.prisma = prisma;
export default prisma;
Is there any best practice way of including a Prisma middleware in a NextJS app? The docs only mentions an express app.Bård
06/30/2021, 9:40 AM