79441675

Date: 2025-02-15 14:26:08
Score: 0.5
Natty:
Report link

This error means that Node is treating your file as a CommonJS module, but you're using ESM (import/export) syntax.

Change your import to a require:

const { PrismaClient } = require('@prisma/client');
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: A.Mohammed Eshaan