From 7fb47f4363659cb7164853f87398d326602dd274 Mon Sep 17 00:00:00 2001 From: Emir Karabeg Date: Mon, 10 Feb 2025 18:51:36 -0800 Subject: [PATCH] Turn off dev indicator --- next.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 73290639bc..3fdc091b15 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,10 @@ import type { NextConfig } from 'next' const nextConfig: NextConfig = { - /* config options here */ + devIndicators: { + buildActivity: false, + appIsrStatus: false, + }, } export default nextConfig