From 6dad8867c3313e9903173715e7fd2ddcfcd17226 Mon Sep 17 00:00:00 2001 From: shadcn Date: Mon, 7 Nov 2022 17:02:17 +0400 Subject: [PATCH] fix: add prisma client to serverComponentsExternalPackages --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index 7013f8d..7c88f78 100644 --- a/next.config.js +++ b/next.config.js @@ -6,6 +6,7 @@ const nextConfig = { }, experimental: { appDir: true, + serverComponentsExternalPackages: ["@prisma/client"], }, }