いつも通り、next.config.tsを設定して、
npm run dev
で、開発サーバを起動したところ、
左下のアイコンが非表示にならなくなっていました。
devIndicators.appIsrStatus` is deprecated and no longer configurable. Please remove it from next.config.ts.
というログが表示されているので、ドキュメントを確認したところ、
next.config.ts
import type { NextConfig } from "next"; const nextConfig: NextConfig = { devIndicators: false, }; export default nextConfig;
という形に変更になっていました。
変更前の記述が見当たらないので、僕がみていたものは幻だったのかもしれません。