From 46396eb56d2a6004a92053e0c76ce0a20946f809 Mon Sep 17 00:00:00 2001 From: Brian Love Date: Mon, 17 Aug 2026 12:53:37 -0700 Subject: [PATCH] fix(examples): raise ag-ui demo initial bundle budget to chat parity The v0.9 A2UI function registry + validators pushed the initial bundle 8.87 kB past the 1.5 MB hard cap and broke the ag-ui demo deploy. Co-Authored-By: Claude Fable 5 --- examples/ag-ui/angular/project.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ag-ui/angular/project.json b/examples/ag-ui/angular/project.json index c2913aaba..f697dcb6a 100644 --- a/examples/ag-ui/angular/project.json +++ b/examples/ag-ui/angular/project.json @@ -44,8 +44,8 @@ "budgets": [ { "type": "initial", - "maximumWarning": "500kb", - "maximumError": "1.5mb" + "maximumWarning": "1.6mb", + "maximumError": "1.75mb" }, { "type": "anyComponentStyle",