silentPerformance

布尔类型,默认值为 false。

如果你不需要报错的时候附带页面性能指标,则可以将 silentPerformance 属性设为 true。

  • 使用init方法配置(推荐)

插件版本 >= 2.0.0

  1. fundebug.init({
  2. silentPerformance : true
  3. })
  • 在 HTML 中配置<script>标签中配置 silentPerformance 属性
  1. <script
  2. src="https://js.fundebug.cn/fundebug.2.4.0.min.js"
  3. apikey="API-KEY"
  4. silentPerformance="true"
  5. crossorigin="anonymous" ></script>
  • 在 JavaScript 中配置 silentPerformance 变量
  1. if ("fundebug" in window) {
  2. fundebug.silentPerformance = true;
  3. }