From 6c27bc094db1c0dc81a24de2374990afa4eab4a1 Mon Sep 17 00:00:00 2001 From: Mohan Ki Date: Mon, 27 Jul 2026 14:09:33 +0530 Subject: [PATCH] Fix TypeScript config property for Next.js 16 build --- client/next.config.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/next.config.ts b/client/next.config.ts index 36a174f..fa13642 100644 --- a/client/next.config.ts +++ b/client/next.config.ts @@ -1,10 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - devIndicators: { - appIsrStatus: false, - buildActivity: false, - }, + output: 'standalone', };