# 构建 指示器
当您编辑代码,而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.js
and set the buildActivityPosition
in the devIndicators
object to bottom-right
(default), bottom-left
, top-right
or 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.js
and disable the buildActivity
config in devIndicators
object:
module.exports = {
devIndicators: {
buildActivity: false,
},
}