From 0350b8d3fbebfa79b22528bc69054e3828a669b6 Mon Sep 17 00:00:00 2001 From: "sg-batch-changes-for-github[bot]" <317061839+sg-batch-changes-for-github[bot]@users.noreply.github.com> Date: Thu, 10 Sep 2026 00:53:59 +0000 Subject: [PATCH] Use -O2 instead of -O3 for Dart compilation Co-authored-by: Rob Becker --- build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.yaml b/build.yaml index f8b7d97d..2e135a79 100644 --- a/build.yaml +++ b/build.yaml @@ -15,7 +15,7 @@ targets: # List any dart2js specific args here, or omit it. dart2js_args: # Omit type checks TODO change to -O4 at some point (e.g., --trust-primitives) - - -O3 + - -O2 # Generate CSP-compliant code since it will be used most often in prod - --csp # Disable minification for easier test/example debugging