仅对生产环境启用 bugsnag

Enable bugsnag only for production environment

提问人:Prerna More 提问时间:12/25/2022 更新时间:12/25/2022 访问量:280

问:

默认 bugsnag 报告开发和生产模式的 bug。仅允许生产 bug 报告。

错误应仅报告生产模式

ReactJS 错误

评论


答:

0赞 Prerna More 12/25/2022 #1

默认情况下,Bugsnag 将收到任何 releaseStage 中发生的事件的通知。如果您想更改通知 Bugsnag 的发布阶段,请设置此选项。

Bugsnag.start({ enabledReleaseStages: [ 'production', 'staging' ] })

要仅启用生产模式错误,请将

Bugsnag.start({ enabledReleaseStages: [ 'production'] })