more fixes

This commit is contained in:
2026-03-12 19:18:01 -05:00
parent 5de0f52af7
commit 6b0190de81
3 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
serverExternalPackages: ["@prisma/client"],
};
export default nextConfig;

View File

@@ -3,7 +3,6 @@
generator client {
provider = "prisma-client-js"
output = "../src/generated/client"
engineType = "library"
}

View File

@@ -1,4 +1,4 @@
import { PrismaClient } from '../generated/client'
import { PrismaClient } from '@prisma/client'
const globalForPrisma = globalThis as unknown as {
prisma: PrismaClient | undefined