NextJS Dev Tools Icon - New to Next #84844
-
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.
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; |
Beta Was this translation helpful? Give feedback.
-
|
Hi @icyJoseph, I used |
Beta Was this translation helpful? Give feedback.


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