inflearn logo
Course

Course

Instructor

hcode's Posts

hcode hcode

@hcode1

Reviews Written
2
Average Rating
4.0

Posts 1

Q&A

Module '"@prisma/client"' has no exported member 'cart'. 에러

강의와 다른 부분이 있다면 prisma generate했을 때 워닝이 떠서 output 경로를 지정해줬습니다. Warning: You did not specify an output path for your `generator` in schema.prisma. This behavior is deprecated and will no longer be supported in Prisma 7.0.0. To learn more visit https://pris.ly/cli/output-path "prisma": "^6.6.0", "@prisma/client": "^6.6.0", generator client { provider = "prisma-client-js" output = "../generated/prisma" } datasource db { provider = "postgresql" url = env("DATABASE_URL") } model cart { ... }

Likes
0
Comments
3
Viewcount
197