From e3fc1d229aaa4cc892564b7905671fa4bb5983f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Thu, 13 Nov 2025 19:10:39 +0100 Subject: [PATCH] FIX: Disables telemetry for storybook --- webapp/IronCalc/.storybook/main.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webapp/IronCalc/.storybook/main.ts b/webapp/IronCalc/.storybook/main.ts index fb2a6e7..4bde714 100644 --- a/webapp/IronCalc/.storybook/main.ts +++ b/webapp/IronCalc/.storybook/main.ts @@ -16,6 +16,9 @@ const config: StorybookConfig = { } config.server.fs.allow = ["../.."]; return config; - } + }, + core: { + disableTelemetry: true, + }, }; export default config;