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 |
Beta Was this translation helpful? Give feedback.
Answered by
icyJoseph
Oct 13, 2025
Replies: 1 comment 1 reply
-
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; |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
thebruhcard
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: