19. 記事ページの左下に固定されているNext.jsの黒いボタンを消す
next.config.js
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
devIndicators: false,
};
export default nextConfig;とするだけ
BACKimport type { NextConfig } from "next";
const nextConfig: NextConfig = {
devIndicators: false,
};
export default nextConfig;とするだけ
BACK