NextJS Dev Tools Icon - New to Next #84844
Answered
by
icyJoseph
thebruhcard
asked this question in
Help
SummaryWhy does the Next.js Dev Tools icon keep showing in the bottom-left corner of my local project, and how can I disable or hide it? Additional informationNo response ExampleNo response |
Answered by
icyJoseph
Oct 13, 2025
Replies: 2 comments 4 replies
|
Hi, devIndicators: false | {
position?: 'bottom-right'
| 'bottom-left'
| 'top-right'
| 'top-left', // defaults to 'bottom-left',
},
So in your Next.js config file, often const nextConfig = {
devIndicators: false,
// other configs
}
export default nextConfig; |
1 reply
Answer selected by
thebruhcard
|
Hi @icyJoseph, I used |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Hi,
So in your Next.js config file, often
next.config.ts, you can do: