chore(web): raise bundle budget 180→250 KB gz (#47)

Generous ceiling so the budget stops blocking per-feature work (this is the third
raise in three frontend milestones) while still catching gross regressions. A
vendor-split / bundle audit can revisit always-loaded weight later.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-07 13:35:35 +02:00
parent fcad638549
commit 303c986d40
+1 -1
View File
@@ -3,7 +3,7 @@ import { readdirSync, readFileSync } from "node:fs";
import { gzipSync } from "node:zlib"; import { gzipSync } from "node:zlib";
import { join } from "node:path"; import { join } from "node:path";
const BUDGET_KB = 180; const BUDGET_KB = 250;
const dir = "dist/assets"; const dir = "dist/assets";
const jsFiles = readdirSync(dir).filter((f) => f.endsWith(".js")); const jsFiles = readdirSync(dir).filter((f) => f.endsWith(".js"));
if (jsFiles.length === 0) { if (jsFiles.length === 0) {