From 253831f634fdffeefa85f356d398821b522335a7 Mon Sep 17 00:00:00 2001 From: Artem-asd Date: Tue, 17 Jun 2025 19:49:44 +0200 Subject: [PATCH] docs: Fix nested array in telemetries example in configuration.md --- docs/configuration.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 12137918..5c53c900 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -199,17 +199,15 @@ For example, the following telemetry config array causes the web client to ignor ```javascript telemetries: [ + 'errors', + 'http', [ - 'errors', - 'http', - [ - 'performance', - { - ignore: (entry: PerformanceEntry) => { - return entry.entryType === 'resource'; - } + 'performance', + { + ignore: (entry: PerformanceEntry) => { + return entry.entryType === 'resource'; } - ] + } ] ]; ```