From 65bf3a12be1270889a65b2886cf35baae602edbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Thu, 26 Mar 2026 13:20:43 +0100 Subject: [PATCH] exclude some dirs in microsite to speed things up MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- microsite/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/microsite/tsconfig.json b/microsite/tsconfig.json index 9a5106747e..c51398e2ed 100644 --- a/microsite/tsconfig.json +++ b/microsite/tsconfig.json @@ -9,5 +9,6 @@ "@docusaurus/theme-classic", "@types/webpack-env" ] - } + }, + "exclude": ["node_modules", "build", ".docusaurus", "static", "blog"] }