Skip to content
Discussion options

You must be logged in to vote

Hi,

  devIndicators: false | {
    position?: 'bottom-right'
    | 'bottom-left'
    | 'top-right'
    | 'top-left', // defaults to 'bottom-left',
  },

Setting devIndicators to false will hide the indicator, however Next.js will continue to surface any build or runtime errors that were encountered.

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

const nextConfig = { 
  devIndicators: false,
  // other configs
}

export default nextConfig;

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@thebruhcard
Comment options

Answer selected by thebruhcard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
2 participants