I was creating a chat window and developing when that lightning-shaped icon labeled Static route was quite bothersome.
I looked up how to remove it but found nothing.

I ended up heading to the official documentation...
Turns out it exists. [Link]
Impressive!

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
devIndicators: {
appIsrStatus: false,
},
}
export default nextConfig
After applying this, the button disappeared.
What a relief.

댓글을 불러오는 중...