79724474

Date: 2025-08-04 04:22:18
Score: 0.5
Natty:
Report link

in your prisma.config.ts you need to add the seed to your defineConfig like so:

export default defineConfig({
  schema: path.join("prisma", "schema.prisma"),
  migrations: {
    path: path.join("db", "migrations"),
    seed: "tsx prisma/seed.ts"
  }
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Simon