Alrighty - ChatGPT helped me figure this one out. Feel free to close the thread and leave it up for anyone else who might be wondering.
If anyone else faces this issue, here’s the steps that fixed it:
- Download and install the new VSCode version (just place the app file into the Applications folder).
- Restart Cursor
- The error I was getting was related to Prisma, so I needed to update my schema.prisma file to add this:
generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "darwin-arm64"]
}
- Then regenerate Prisma in the command line:
npx prisma generate
- Kill then Restart the dev server:
npm run dev