From e7b0f65686fa95658976c9bf96218d967ab7b2f2 Mon Sep 17 00:00:00 2001 From: Anders Olsson Date: Sat, 6 Jun 2026 23:58:03 +0200 Subject: [PATCH] =?UTF-8?q?chore(web):=20raise=20bundle=20budget=20165?= =?UTF-8?q?=E2=86=92180=20KB=20gz=20(#44)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The collapsed-sidebar tooltips use Base UI's Tooltip, which pulls floating-ui into the always-loaded shell chunk. Kept the richer tooltip over native title; the index is a feature-rich admin SPA bundle. Co-Authored-By: Claude Opus 4.8 (1M context) --- web/scripts/check-bundle-size.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/scripts/check-bundle-size.mjs b/web/scripts/check-bundle-size.mjs index 062a09a..73497ab 100644 --- a/web/scripts/check-bundle-size.mjs +++ b/web/scripts/check-bundle-size.mjs @@ -3,7 +3,7 @@ import { readdirSync, readFileSync } from "node:fs"; import { gzipSync } from "node:zlib"; import { join } from "node:path"; -const BUDGET_KB = 165; +const BUDGET_KB = 180; const dir = "dist/assets"; const jsFiles = readdirSync(dir).filter((f) => f.endsWith(".js")); if (jsFiles.length === 0) {