この記事を書いた理由
Next.js 左下 N 消す で自分が調べる用
これを消したい

方法
next.config.ts
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
/* config options here */
+ devIndicators: false,
};
export default nextConfig;
next.config.tsにdevIndicators: false,を追加する
以上!
いつかの自分が助かるといいね
Discussion