Fix TypeScript config property for Next.js 16 build

This commit is contained in:
Mohan Ki
2026-07-27 14:09:33 +05:30
parent fc3140c262
commit 6c27bc094d
+1 -4
View File
@@ -1,10 +1,7 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
devIndicators: {
appIsrStatus: false,
buildActivity: false,
},
output: 'standalone', output: 'standalone',
}; };