# 构建 指示器

当您编辑代码,而Next.js正在编译应用程序时,页面的右下角会出现一个编译指示符。

**Note:**This indicator is only present in development mode and will not appear when building and running the app in production mode.

In some cases this indicator can be misplaced on your page, for example, when conflicting with a chat launcher. To change its position, open next.config.jsand set the buildActivityPositionin the devIndicatorsobject to bottom-right(default), bottom-left, top-rightor top-left:

module.exports = {
  devIndicators: {
    buildActivityPosition: 'bottom-right',
  },
}

In some cases this indicator might not be useful for you. To remove it, open next.config.jsand disable the buildActivityconfig in devIndicatorsobject:

module.exports = {
  devIndicators: {
    buildActivity: false,
  },
}

Last Updated: 5/13/2023, 8:55:38 PM