Setup Prisma Client for Node Application
In this post we will setup Prisma client for Node Application like below
Fist go to backend/src/prisma/client.js and add below code on that ->
import { PrismaClient } from "@prisma/client";
const prisma = new PrismaClient();
export default prisma;
and save.
Comments
Post a Comment