CRUD API with Next.js and Prisma
Introduction
I'm currently working on a chat web application, and I'm using Next.js with Prisma for it. In this post, I will show you how I made CRUD API with Next.js and Prisma.
Code
schema.prisma
generator client {
provider = "prisma-client-js"
}...
dongjinkim.vercel.app2 min read