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 { ... }