From 3c0de5123ed273b165a5879ead1999bee9d08e07 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 13 Jun 2024 11:28:34 +0200 Subject: [PATCH] chore: remove unused output property from next.config.mjs --- nextjs/prisma/next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextjs/prisma/next.config.mjs b/nextjs/prisma/next.config.mjs index debd939..4cb30e9 100644 --- a/nextjs/prisma/next.config.mjs +++ b/nextjs/prisma/next.config.mjs @@ -1,6 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - output: 'export', + }; export default nextConfig;