From e0e029592ef493beee5317c591fb1efcd2bb74da 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:49:17 +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 d0eb07b5..71acee0e 100644 --- a/build.yaml +++ b/build.yaml @@ -10,7 +10,7 @@ targets: # List any dart2js specific args here, or omit it. dart2js_args: # Omit type checks - - -O3 + - -O2 # Generate CSP-compliant code since it will be used most often in prod - --csp # Disable minification for easier test/example debugging