From 1e037f8a772b7b3961e0d97737c6d2f69dfc5ffe Mon Sep 17 00:00:00 2001 From: chrox Date: Wed, 6 Nov 2024 22:25:42 +0100 Subject: [PATCH] Disable nextjs static indicator --- apps/readest-app/next.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/readest-app/next.config.mjs b/apps/readest-app/next.config.mjs index ad149364..03ca0e84 100644 --- a/apps/readest-app/next.config.mjs +++ b/apps/readest-app/next.config.mjs @@ -13,6 +13,9 @@ const nextConfig = { images: { unoptimized: true, }, + devIndicators: { + appIsrStatus: false, + }, // Configure assetPrefix or else the server won't properly resolve your assets. assetPrefix: isProd ? '' : `http://${internalHost}:3000`, reactStrictMode: true,