From 9d61eaa04d67a5dd25e8c46f3a33baf9a6443f99 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 28 Feb 2025 16:50:07 +0530 Subject: [PATCH] :\ --- web/packages/base/next.config.base.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/packages/base/next.config.base.js b/web/packages/base/next.config.base.js index 2c8155bf7a..594a8b9a3c 100644 --- a/web/packages/base/next.config.base.js +++ b/web/packages/base/next.config.base.js @@ -104,6 +104,10 @@ if (process.env.NEXT_PUBLIC_ENTE_FAMILY_URL) { const nextConfig = { // Generate a static export when we run `next build`. output: "export", + // Instead of the nice and useful HMR indicator that used to exist prior to + // 15.2, the Next.js folks have made this a persistent "branding" indicator + // that gets in the way and needs to be disabled. + devIndicators: false, compiler: { emotion: true, },