19. 記事ページの左下に固定されているNext.jsの黒いボタンを消す

Cursor

next.config.js

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  devIndicators: false,
};

export default nextConfig;

とするだけ

BACK