Updated prisma config.

This commit is contained in:
Mike Cao
2025-04-28 20:59:06 -07:00
parent d667fd5fbe
commit fc6aa80176
2 changed files with 1 additions and 2 deletions

View File

@@ -3,5 +3,5 @@ import { defineConfig } from 'prisma/config';
export default defineConfig({
earlyAccess: true,
schema: path.join('prisma', 'schema.prisma'),
schema: path.resolve(process.cwd(), 'prisma', 'schema.prisma'),
});