Skip to content

feat: follow --comfy-api-base for staging and preview backends#13054

Open
bigcat88 wants to merge 1 commit into
mainfrom
feat/ephemeral-env-features
Open

feat: follow --comfy-api-base for staging and preview backends#13054
bigcat88 wants to merge 1 commit into
mainfrom
feat/ephemeral-env-features

Conversation

@bigcat88

@bigcat88 bigcat88 commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

Summary

Let the running ComfyUI server decide which backend the web UI talks to (and which Firebase project it signs you into), so launching with --comfy-api-base just works with the regular bundled frontend.

Changes

  • What: At startup the frontend reads /api/features on every build (not just cloud) and treats the server's comfy_api_base_url / comfy_platform_base_url as authoritative, falling back to the build-time defaults.
    When that api base is a staging-tier host (staging, or a *.testenvs.comfy.org preview env) and the server hasn't supplied its own Firebase config, the frontend picks the dev Firebase project, derived from the api base.
    Production is left exactly as it is today.
    • main.ts: load remote config first thing, before Firebase initializes, so every module sees the right values from the first render
    • config/comfyApi.ts: the api/platform getters now read the server's values on all distributions
    • config/firebase.ts: getFirebaseConfig() resolves in order: a server-provided config first (cloud), then the dev project for a staging-tier api base, then the build-time default
    • platform/remoteConfig/refreshRemoteConfig.ts: the startup fetch now has a 5s timeout, so a slow or wedged /features can never keep the app from mounting; on failure we fall back to the build-time defaults
  • Breaking: None. With no /features overrides (production and ordinary self-hosting), behavior is unchanged

Review Focus

  • The precedence in getFirebaseConfig() (config/firebase.ts): server config first, then the staging-tier dev project, then the build-time default. The staging-tier check matches stagingapi.comfy.org and any *.testenvs.comfy.org host, and falls back to build-time for anything it can't parse.
  • Running refreshRemoteConfig() unconditionally and first in main.ts, with the new fetch timeout as the safety net.

Testing

I tested every case by hand, locally, on top of the automated checks.
Tested both with pnpm run build and USE_PROD_CONFIG=true pnpm build and running Comfy from that folder.

Pointed a local ComfyUI at each backend with --comfy-api-base and signed in with Google each time:

  • Production (default / https://api.comfy.org): stays on production and signs into the production Firebase project, identical to today.
  • Staging (https://stagingapi.comfy.org): follows it and signs into the dev project.
  • Ephemeral preview env (https://pr-<n>.testenvs.comfy.org): the friendly host is accepted as-is, the frontend follows it, lands in the dev project, and Google sign-in completes.

The only exception where fronted does not respect the --comfy-api-base is when Comfy runs against prod and frontend runs with the pnpm run dev - due to overridden config(this is expected behavior).

Supersedes: #12560
Companion Core PR: Comfy-Org/ComfyUI#14569

Screenshots (if applicable)

@bigcat88 bigcat88 requested a review from a team June 20, 2026 18:10
@coderabbitai

coderabbitai Bot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

Remote config bootstrapping in main.ts is made unconditional. refreshRemoteConfig gains a fetch timeout via AbortController and accepts an AbortSignal parameter. getComfyApiBaseUrl, getComfyPlatformBaseUrl, and getFirebaseConfig drop isCloud guards and always resolve from remoteConfig.value with build-time fallbacks. New test suites cover override paths, empty-string handling, missing keys, timeout behavior, and older-server compatibility.

Changes

Remote-config-first initialization and URL resolution

Layer / File(s) Summary
Unconditional bootstrap and fetch timeout
src/main.ts, src/platform/remoteConfig/refreshRemoteConfig.ts, src/platform/remoteConfig/refreshRemoteConfig.test.ts
main.ts removes the conditional guard so refreshRemoteConfig({ useAuth: false }) always runs at startup. refreshRemoteConfig.ts adds FEATURES_FETCH_TIMEOUT_MS, updates fetchRemoteConfig to accept and forward an AbortSignal, wraps the unauthenticated fetch in an AbortController/setTimeout pair, and clears the timeout in a finally block. Tests loosen fetch-option assertions, add abort-signal presence assertions for the unauthenticated path, and verify that abort-triggered DOMException clears both remoteConfig.value and window.__CONFIG__ to {}.
isCloud-free ComfyAPI URL resolution
src/config/comfyApi.ts, src/config/comfyApi.test.ts
Removes the isCloud import; getComfyApiBaseUrl() and getComfyPlatformBaseUrl() now unconditionally read comfy_api_base_url and comfy_platform_base_url from remoteConfig.value with build-time constants as fallback. Tests cover override values, empty-string, missing-key, and older-server compatibility scenarios where /features omits the override keys.
isCloud-free Firebase config resolution
src/config/firebase.ts, src/config/firebase.test.ts
Removes the isCloud import; getFirebaseConfig() introduces staging-tier detection via STAGING_API_HOST and TESTENV_HOST_SUFFIX constants, returns remoteConfig.value.firebase_config when present, DEV_CONFIG for staging-tier API bases, and BUILD_TIME_CONFIG otherwise. Tests assert all three branches, including unparseable URL handling and build-time fallback behavior across prod and dev builds.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Suggested reviewers

  • deepme987
  • pythongosssss

Poem

🐇 Hop, hop, no isCloud gate!
The config flows regardless of state.
A timeout guards the features call,
So builds don't hang — no stall at all.
Remote config blooms for every run,
My carrot patch shines bright as sun! 🥕

🚥 Pre-merge checks | ✅ 7
✅ Passed checks (7 passed)
Check name Status Explanation
Title check ✅ Passed The title 'feat: follow --comfy-api-base for staging and preview backends' directly reflects the main change: enabling the frontend to respect the server's --comfy-api-base flag for different backend environments.
Description check ✅ Passed The description comprehensively covers all required sections: a clear summary, detailed changes explaining the what/why, review focus on critical design decisions, testing methodology with specific scenarios, and context on related PRs.
Docstring Coverage ✅ Passed Docstring coverage is 83.33% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
End-To-End Regression Coverage For Fixes ✅ Passed Commit subject uses "chore:" prefix, not bug-fix language (fix/bugfix/hotfix), so FAIL criteria not met; check passes by default.
Adr Compliance For Entity/Litegraph Changes ✅ Passed Check not applicable: PR modifies only config and remote config files; no changes to src/lib/litegraph/, src/ecs/, or graph entity files.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/ephemeral-env-features

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Jun 20, 2026
@github-actions

github-actions Bot commented Jun 20, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 06/25/2026, 06:06:04 PM UTC

Links

🎭 Playwright: ✅ 1686 passed, 0 failed · 2 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1667 / ❌ 0 / ⚠️ 1 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 16 / ❌ 0 / ⚠️ 1 / ⏭️ 0)

📦 Bundle: 7.54 MB gzip 🔴 +313 B

Details

Summary

  • Raw size: 31.7 MB baseline 31.7 MB — 🔴 +256 B
  • Gzip: 7.54 MB baseline 7.54 MB — 🔴 +313 B
  • Brotli: 5.17 MB baseline 5.17 MB — 🔴 +590 B
  • Bundles: 294 current • 294 baseline • 208 added / 208 removed

Category Glance
Panels & Settings 🔴 +314 B (516 kB) · Utilities & Hooks 🟢 -99 B (3.34 MB) · App Entry Points 🔴 +41 B (46.9 kB) · Vendor & Third-Party ⚪ 0 B (15.3 MB) · Other ⚪ 0 B (10.7 MB) · Graph Workspace ⚪ 0 B (1.25 MB) · + 5 more

App Entry Points — 46.9 kB (baseline 46.9 kB) • 🔴 +41 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-D-vvhbMe.js (new) 46.9 kB 🔴 +46.9 kB 🔴 +13.8 kB 🔴 +11.9 kB
assets/index-6cjoF5Op.js (removed) 46.9 kB 🟢 -46.9 kB 🟢 -13.8 kB 🟢 -11.9 kB

Status: 1 added / 1 removed

Graph Workspace — 1.25 MB (baseline 1.25 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-DCWyEeIM.js (new) 1.25 MB 🔴 +1.25 MB 🔴 +267 kB 🔴 +201 kB
assets/GraphView-QJ0lIdUN.js (removed) 1.25 MB 🟢 -1.25 MB 🟢 -267 kB 🟢 -201 kB

Status: 1 added / 1 removed

Views & Navigation — 97.5 kB (baseline 97.5 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-B5Xledn7.js (removed) 19.4 kB 🟢 -19.4 kB 🟢 -5.03 kB 🟢 -4.46 kB
assets/CloudSurveyView-BTaLTVf9.js (new) 19.4 kB 🔴 +19.4 kB 🔴 +5.03 kB 🔴 +4.46 kB
assets/OAuthConsentView-B7xw6BI2.js (new) 15 kB 🔴 +15 kB 🔴 +4.1 kB 🔴 +3.57 kB
assets/OAuthConsentView-xF1TryVg.js (removed) 15 kB 🟢 -15 kB 🟢 -4.1 kB 🟢 -3.56 kB
assets/CloudLoginView-Bco-h2gS.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.06 kB 🟢 -2.69 kB
assets/CloudLoginView-BeWsuzBx.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.07 kB 🔴 +2.69 kB
assets/CloudSignupView-CDeFvBgN.js (new) 9.63 kB 🔴 +9.63 kB 🔴 +2.69 kB 🔴 +2.35 kB
assets/CloudSignupView-CFcZCMrZ.js (removed) 9.63 kB 🟢 -9.63 kB 🟢 -2.69 kB 🟢 -2.35 kB
assets/CloudLayoutView-BH-st-cJ.js (new) 9.36 kB 🔴 +9.36 kB 🔴 +2.34 kB 🔴 +2.02 kB
assets/CloudLayoutView-D7yNesLh.js (removed) 9.36 kB 🟢 -9.36 kB 🟢 -2.34 kB 🟢 -2.03 kB
assets/UserCheckView-CCLWRq_q.js (removed) 8.8 kB 🟢 -8.8 kB 🟢 -2.22 kB 🟢 -1.93 kB
assets/UserCheckView-KGx3Rnue.js (new) 8.8 kB 🔴 +8.8 kB 🔴 +2.21 kB 🔴 +1.93 kB
assets/CloudSubscriptionRedirectView-Ce8apkdL.js (new) 6.63 kB 🔴 +6.63 kB 🔴 +2.46 kB 🔴 +2.15 kB
assets/CloudSubscriptionRedirectView-DfVW_qmQ.js (removed) 6.63 kB 🟢 -6.63 kB 🟢 -2.46 kB 🟢 -2.15 kB
assets/UserSelectView-BWq8Vhqq.js (removed) 6 kB 🟢 -6 kB 🟢 -2.15 kB 🟢 -1.89 kB
assets/UserSelectView-tfM5GTl6.js (new) 6 kB 🔴 +6 kB 🔴 +2.15 kB 🔴 +1.88 kB
assets/CloudForgotPasswordView-CAxWtyut.js (removed) 5.15 kB 🟢 -5.15 kB 🟢 -1.75 kB 🟢 -1.53 kB
assets/CloudForgotPasswordView-g9-k6qvk.js (new) 5.15 kB 🔴 +5.15 kB 🔴 +1.76 kB 🔴 +1.54 kB
assets/CloudAuthTimeoutView-BF_fWEf_.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.57 kB 🔴 +1.37 kB
assets/CloudAuthTimeoutView-ms2KziIT.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.57 kB 🟢 -1.37 kB
assets/CloudSorryContactSupportView-3yfgKnUL.js (new) 1.21 kB 🔴 +1.21 kB 🔴 +607 B 🔴 +526 B
assets/CloudSorryContactSupportView-DNT8B2Uo.js (removed) 1.21 kB 🟢 -1.21 kB 🟢 -605 B 🟢 -530 B
assets/layout-BsGxiL6N.js (new) 447 B 🔴 +447 B 🔴 +285 B 🔴 +240 B
assets/layout-DkbRip77.js (removed) 447 B 🟢 -447 B 🟢 -284 B 🟢 -234 B

Status: 12 added / 12 removed

Panels & Settings — 516 kB (baseline 516 kB) • 🔴 +314 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-CsBS7kZI.js (new) 49.5 kB 🔴 +49.5 kB 🔴 +9.97 kB 🔴 +8.82 kB
assets/KeybindingPanel-D2hcNOnd.js (removed) 49.5 kB 🟢 -49.5 kB 🟢 -9.97 kB 🟢 -8.83 kB
assets/settings-DhUSFbIy.js (new) 27.2 kB 🔴 +27.2 kB 🔴 +7.75 kB 🔴 +6.46 kB
assets/settings-SBB4ueng.js (removed) 27.2 kB 🟢 -27.2 kB 🟢 -7.75 kB 🟢 -6.44 kB
assets/SecretsPanel-BzV84sBI.js (removed) 24.2 kB 🟢 -24.2 kB 🟢 -5.77 kB 🟢 -5.07 kB
assets/SecretsPanel-Dj216qNy.js (new) 24.2 kB 🔴 +24.2 kB 🔴 +5.77 kB 🔴 +5.07 kB
assets/CreditsPanel-DOnLrCv5.js (removed) 15.6 kB 🟢 -15.6 kB 🟢 -4.61 kB 🟢 -4.04 kB
assets/CreditsPanel-DW2NmiP8.js (new) 15.6 kB 🔴 +15.6 kB 🔴 +4.61 kB 🔴 +4.04 kB
assets/SubscriptionPanel-9pFCkRU9.js (removed) 15.1 kB 🟢 -15.1 kB 🟢 -4.36 kB 🟢 -3.81 kB
assets/SubscriptionPanel-CXUKt_Vx.js (new) 15.1 kB 🔴 +15.1 kB 🔴 +4.35 kB 🔴 +3.8 kB
assets/AboutPanel-BCbZ_MeG.js (removed) 11.7 kB 🟢 -11.7 kB 🟢 -3.23 kB 🟢 -2.89 kB
assets/AboutPanel-DAVJ-do4.js (new) 11.7 kB 🔴 +11.7 kB 🔴 +3.22 kB 🔴 +2.89 kB
assets/ExtensionPanel-BBtaK_-d.js (new) 9.03 kB 🔴 +9.03 kB 🔴 +2.49 kB 🔴 +2.19 kB
assets/ExtensionPanel-BJu91PAL.js (removed) 9.03 kB 🟢 -9.03 kB 🟢 -2.49 kB 🟢 -2.19 kB
assets/settings-_vOFyRJF.js (new) 7.07 kB 🔴 +7.07 kB 🔴 +1.86 kB 🔴 +1.59 kB
assets/settings-BMsHiZv0.js (removed) 7.07 kB 🟢 -7.07 kB 🟢 -1.86 kB 🟢 -1.59 kB
assets/ServerConfigPanel-CkT4lmTZ.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +1.97 kB 🔴 +1.76 kB
assets/ServerConfigPanel-Fl3TwT-8.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -1.97 kB 🟢 -1.75 kB
assets/UserPanel-BPu46UJe.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.82 kB 🔴 +1.57 kB
assets/UserPanel-C_g-Ba0H.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.82 kB 🟢 -1.57 kB
assets/refreshRemoteConfig-vJ4gp95h.js (new) 2.73 kB 🔴 +2.73 kB 🔴 +1.22 kB 🔴 +1.07 kB
assets/refreshRemoteConfig-C_yZZqdY.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.06 kB 🟢 -944 B
assets/config-CqDoJ9_I.js (removed) 2.14 kB 🟢 -2.14 kB 🟢 -1.04 kB 🟢 -841 B
assets/config-sCFY6THA.js (new) 2.14 kB 🔴 +2.14 kB 🔴 +1.04 kB 🔴 +842 B
assets/remoteConfig-_BsfIY_T.js (removed) 1.38 kB 🟢 -1.38 kB 🟢 -690 B 🟢 -568 B
assets/remoteConfig-Bmn8t4sl.js (new) 1.38 kB 🔴 +1.38 kB 🔴 +690 B 🔴 +567 B
assets/cloudRemoteConfig-BcPtPS0D.js (new) 990 B 🔴 +990 B 🔴 +542 B 🔴 +471 B
assets/cloudRemoteConfig-BDLqjkRn.js (removed) 990 B 🟢 -990 B 🟢 -543 B 🟢 -470 B
assets/refreshRemoteConfig-BpGF6vZX.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +85 B
assets/refreshRemoteConfig-CJhs2b8y.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -89 B

Status: 15 added / 15 removed / 11 unchanged

User & Accounts — 20 kB (baseline 20 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/PasswordFields-B04a1sFp.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.42 kB 🟢 -1.25 kB
assets/PasswordFields-Dc9eufvx.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.42 kB 🔴 +1.26 kB
assets/auth-mDC7cC0a.js (removed) 3.69 kB 🟢 -3.69 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/auth-nbhesaaL.js (new) 3.69 kB 🔴 +3.69 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/usePostAuthRedirect-5WP3LG_a.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.27 kB 🟢 -1.11 kB
assets/usePostAuthRedirect-DvFLoOnK.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.27 kB 🔴 +1.11 kB
assets/SignUpForm-bdlwjA3F.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/SignUpForm-TH8qS7nc.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/UpdatePasswordContent-6vjqTTDO.js (removed) 1.92 kB 🟢 -1.92 kB 🟢 -878 B 🟢 -763 B
assets/UpdatePasswordContent-Mv5kHokD.js (new) 1.92 kB 🔴 +1.92 kB 🔴 +877 B 🔴 +766 B
assets/authStore-B_rcXmC5.js (removed) 130 B 🟢 -130 B 🟢 -112 B 🟢 -103 B
assets/authStore-DYpaVOwM.js (new) 130 B 🔴 +130 B 🔴 +112 B 🔴 +109 B
assets/workspaceAuthStore-COXcv_cJ.js (new) 110 B 🔴 +110 B 🔴 +104 B 🔴 +114 B
assets/workspaceAuthStore-CYQWT9mn.js (removed) 110 B 🟢 -110 B 🟢 -104 B 🟢 -114 B
assets/auth-B2_ZDSs3.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -90 B
assets/auth-DHZ91nlb.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +80 B

Status: 8 added / 8 removed / 2 unchanged

Editors & Dialogs — 112 kB (baseline 112 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-BF9h9N1O.js (new) 86 kB 🔴 +86 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-CXt7AyGC.js (removed) 86 kB 🟢 -86 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/useShareDialog--QyYMLA7.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.54 kB 🟢 -4.9 kB
assets/useShareDialog-CRRiRjZV.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.53 kB 🔴 +4.9 kB
assets/SubscriptionInactiveMemberDialog-CnLtmKxK.js (removed) 2.55 kB 🟢 -2.55 kB 🟢 -1.03 kB 🟢 -891 B
assets/SubscriptionInactiveMemberDialog-Ct1VAIli.js (new) 2.55 kB 🔴 +2.55 kB 🔴 +1.03 kB 🔴 +893 B
assets/ComfyHubPublishDialog-BWtcYzV2.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +89 B
assets/ComfyHubPublishDialog-xD4L-mBs.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -91 B
assets/useSubscriptionDialog-CHPZWxtq.js (removed) 110 B 🟢 -110 B 🟢 -102 B 🟢 -90 B
assets/useSubscriptionDialog-DQlcNQER.js (new) 110 B 🔴 +110 B 🔴 +102 B 🔴 +89 B

Status: 5 added / 5 removed

UI Components — 65.2 kB (baseline 65.2 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-B-ltrCS_.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.82 kB 🟢 -3.41 kB
assets/ComfyQueueButton-Cbod4cti.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.82 kB 🔴 +3.41 kB
assets/useTerminalTabs-B3WeTOYq.js (removed) 12.1 kB 🟢 -12.1 kB 🟢 -3.83 kB 🟢 -3.38 kB
assets/useTerminalTabs-DFCOiJri.js (new) 12.1 kB 🔴 +12.1 kB 🔴 +3.83 kB 🔴 +3.38 kB
assets/DropdownMenu-98jTWTD6.js (new) 8.04 kB 🔴 +8.04 kB 🔴 +2.46 kB 🔴 +2.19 kB
assets/DropdownMenu-CEr2WDsv.js (removed) 8.04 kB 🟢 -8.04 kB 🟢 -2.46 kB 🟢 -2.19 kB
assets/TopbarBadge-DldvErla.js (new) 7.7 kB 🔴 +7.7 kB 🔴 +1.87 kB 🔴 +1.64 kB
assets/TopbarBadge-QAuIdGsP.js (removed) 7.7 kB 🟢 -7.7 kB 🟢 -1.87 kB 🟢 -1.64 kB
assets/ScrubableNumberInput-BpilJVI_.js (new) 6.31 kB 🔴 +6.31 kB 🔴 +2.14 kB 🔴 +1.89 kB
assets/ScrubableNumberInput-CDmoMNB3.js (removed) 6.31 kB 🟢 -6.31 kB 🟢 -2.13 kB 🟢 -1.88 kB
assets/toggle-group-Be5Kmjsm.js (new) 4.16 kB 🔴 +4.16 kB 🔴 +1.45 kB 🔴 +1.28 kB
assets/toggle-group-BeDw1xPv.js (removed) 4.16 kB 🟢 -4.16 kB 🟢 -1.45 kB 🟢 -1.27 kB
assets/Button-5IdSsNxn.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.41 kB 🟢 -1.23 kB
assets/Button-dBOnKKVm.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.41 kB 🔴 +1.23 kB
assets/SubscribeButton-DdAJYCwF.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -1.04 kB 🟢 -905 B
assets/SubscribeButton-Dihd5aHZ.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +1.04 kB 🔴 +903 B
assets/WidgetButton-B1FKtY7q.js (removed) 1.98 kB 🟢 -1.98 kB 🟢 -922 B 🟢 -806 B
assets/WidgetButton-DcMvDLeb.js (new) 1.98 kB 🔴 +1.98 kB 🔴 +920 B 🔴 +816 B
assets/Input-DaDe0St0.js (removed) 1.81 kB 🟢 -1.81 kB 🟢 -899 B 🟢 -789 B
assets/Input-DZT6nrl5.js (new) 1.81 kB 🔴 +1.81 kB 🔴 +903 B 🔴 +792 B
assets/CloudBadge-Dr67hAkt.js (new) 1.18 kB 🔴 +1.18 kB 🔴 +592 B 🔴 +513 B
assets/CloudBadge-DzlK4EA0.js (removed) 1.18 kB 🟢 -1.18 kB 🟢 -595 B 🟢 -517 B
assets/cloudFeedbackTopbarButton-DtGT440x.js (new) 829 B 🔴 +829 B 🔴 +500 B 🔴 +421 B
assets/cloudFeedbackTopbarButton-UpIes7Lr.js (removed) 829 B 🟢 -829 B 🟢 -497 B 🟢 -448 B
assets/ComfyQueueButton-CqeYFPqx.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -91 B
assets/ComfyQueueButton-DkMyYAyA.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +90 B

Status: 13 added / 13 removed / 1 unchanged

Data & Services — 269 kB (baseline 269 kB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/load3dService-BG2u-Ai8.js (new) 126 kB 🔴 +126 kB 🔴 +27.8 kB 🔴 +23.5 kB
assets/load3dService-CFfDX4oj.js (removed) 126 kB 🟢 -126 kB 🟢 -27.8 kB 🟢 -23.5 kB
assets/api-BAdTktrQ.js (new) 91.9 kB 🔴 +91.9 kB 🔴 +25.3 kB 🔴 +21.6 kB
assets/api-BfAVz8vR.js (removed) 91.9 kB 🟢 -91.9 kB 🟢 -25.3 kB 🟢 -21.7 kB
assets/workflowShareService-BTLsplMy.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.91 kB 🟢 -4.36 kB
assets/workflowShareService-D1AHjt4w.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/releaseStore-DygUZNO3.js (new) 8.29 kB 🔴 +8.29 kB 🔴 +2.34 kB 🔴 +2.04 kB
assets/releaseStore-v1YvVI67.js (removed) 8.29 kB 🟢 -8.29 kB 🟢 -2.34 kB 🟢 -2.04 kB
assets/keybindingService-DA-lwT_o.js (new) 7.12 kB 🔴 +7.12 kB 🔴 +1.77 kB 🔴 +1.53 kB
assets/keybindingService-Dkcy-q-g.js (removed) 7.12 kB 🟢 -7.12 kB 🟢 -1.76 kB 🟢 -1.52 kB
assets/dialogStore-CRYyq526.js (new) 5.36 kB 🔴 +5.36 kB 🔴 +1.67 kB 🔴 +1.46 kB
assets/dialogStore-EnpiC70X.js (removed) 5.36 kB 🟢 -5.36 kB 🟢 -1.66 kB 🟢 -1.43 kB
assets/extensionStore-Bf_W1OQs.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.57 kB
assets/extensionStore-DsvGICOp.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/userStore-Be2USY2y.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +933 B 🔴 +821 B
assets/userStore-DNrkBEiO.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -932 B 🟢 -821 B
assets/audioService-B8bGfE6W.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -861 B 🟢 -750 B
assets/audioService-CqOJFBUj.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +859 B 🔴 +746 B
assets/toastStore-BIphcVgz.js (new) 889 B 🔴 +889 B 🔴 +433 B 🔴 +375 B
assets/toastStore-Dj6onFfy.js (removed) 889 B 🟢 -889 B 🟢 -431 B 🟢 -371 B
assets/dialogService-BCqiBVWc.js (removed) 100 B 🟢 -100 B 🟢 -99 B 🟢 -98 B
assets/dialogService-BuZPDWgE.js (new) 100 B 🔴 +100 B 🔴 +99 B 🔴 +93 B
assets/settingStore-B_pfQ1dU.js (new) 98 B 🔴 +98 B 🔴 +98 B 🔴 +89 B
assets/settingStore-BclWdwaz.js (removed) 98 B 🟢 -98 B 🟢 -98 B 🟢 -92 B
assets/assetsStore-eXPU4OQh.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +88 B
assets/assetsStore-zWbqsLo2.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -98 B
assets/releaseStore-DfrYk_4Z.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -86 B
assets/releaseStore-Dyc7hewE.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +94 B
assets/api-C_FwKP0W.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B
assets/api-CMKQS-WE.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B

Status: 15 added / 15 removed / 1 unchanged

Utilities & Hooks — 3.34 MB (baseline 3.34 MB) • 🟢 -99 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/promotionUtils-DuCVNnwL.js (removed) 2.99 MB 🟢 -2.99 MB 🟢 -690 kB 🟢 -521 kB
assets/promotionUtils-lFmTvKz6.js (new) 2.99 MB 🔴 +2.99 MB 🔴 +690 kB 🔴 +521 kB
assets/useConflictDetection-B-DPQFhI.js (new) 234 kB 🔴 +234 kB 🔴 +52.3 kB 🔴 +42.6 kB
assets/useConflictDetection-DO8seDEH.js (removed) 234 kB 🟢 -234 kB 🟢 -52.3 kB 🟢 -42.6 kB
assets/useLoad3d-Bs0O0YSB.js (removed) 25.5 kB 🟢 -25.5 kB 🟢 -5.75 kB 🟢 -5.09 kB
assets/useLoad3d-p6BGvPO0.js (new) 25.5 kB 🔴 +25.5 kB 🔴 +5.75 kB 🔴 +5.09 kB
assets/useLoad3dViewer-B0RDmLnC.js (removed) 21.1 kB 🟢 -21.1 kB 🟢 -4.98 kB 🟢 -4.35 kB
assets/useLoad3dViewer-BXfCFcUt.js (new) 21.1 kB 🔴 +21.1 kB 🔴 +4.98 kB 🔴 +4.35 kB
assets/formatUtil-B15pKy0Z.js (new) 16 kB 🔴 +16 kB 🔴 +5.45 kB 🔴 +4.8 kB
assets/formatUtil-KK3zIb6e.js (removed) 16 kB 🟢 -16 kB 🟢 -5.45 kB 🟢 -4.81 kB
assets/useImageQuiet-BCtJ0CtY.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.5 kB 🟢 -3.01 kB
assets/useImageQuiet-CRPG_kp7.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.5 kB 🔴 +3.01 kB
assets/useTypeformEmbed-C1EeUIhG.js (new) 5.91 kB 🔴 +5.91 kB 🔴 +2.29 kB 🔴 +1.89 kB
assets/useTypeformEmbed-vEu6RpYn.js (removed) 5.91 kB 🟢 -5.91 kB 🟢 -2.28 kB 🟢 -1.89 kB
assets/useFeatureFlags-Dy_q4mMT.js (removed) 5.37 kB 🟢 -5.37 kB 🟢 -1.65 kB 🟢 -1.41 kB
assets/useFeatureFlags-rCXdgI8V.js (new) 5.37 kB 🔴 +5.37 kB 🔴 +1.65 kB 🔴 +1.41 kB
assets/downloadUtil-BvFap1SB.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.85 kB 🔴 +1.54 kB
assets/downloadUtil-D4fvzoZU.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.85 kB 🟢 -1.53 kB
assets/subscriptionCheckoutUtil-CIpXROhs.js (removed) 3.52 kB 🟢 -3.52 kB 🟢 -1.45 kB 🟢 -1.26 kB
assets/subscriptionCheckoutUtil-rhx2UZWK.js (new) 3.52 kB 🔴 +3.52 kB 🔴 +1.45 kB 🔴 +1.26 kB
assets/useSessionCookie-B3npFA86.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.15 kB 🟢 -979 B
assets/useSessionCookie-CpjK7Oa9.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.15 kB 🔴 +979 B
assets/useExternalLink-BQgMORE_.js (new) 3.03 kB 🔴 +3.03 kB 🔴 +1.16 kB 🔴 +1.03 kB
assets/useExternalLink-DnxsLaNx.js (removed) 3.03 kB 🟢 -3.03 kB 🟢 -1.16 kB 🟢 -1.02 kB
assets/useDowngradeToPersonal-6qZN6FLr.js (removed) 3 kB 🟢 -3 kB 🟢 -1.18 kB 🟢 -1.05 kB
assets/useDowngradeToPersonal-D6Esg-Gy.js (new) 3 kB 🔴 +3 kB 🔴 +1.19 kB 🔴 +1.03 kB
assets/assetPreviewUtil-D1d5jnia.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1 kB 🟢 -875 B
assets/assetPreviewUtil-WW1VurPA.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1.01 kB 🔴 +878 B
assets/useFeatureUsageTracker-BZV9b3YC.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +946 B 🔴 +801 B
assets/useFeatureUsageTracker-DwLGqx-X.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -945 B 🟢 -802 B
assets/useUpstreamValue-DDXVTPLD.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -794 B 🟢 -711 B
assets/useUpstreamValue-DMY-ir7B.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +794 B 🔴 +703 B
assets/useWorkspaceTierLabel-cYDXEnL2.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +854 B 🔴 +738 B
assets/useWorkspaceTierLabel-DuBt_Mq9.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -851 B 🟢 -732 B
assets/markdownRendererUtil-Bq_UpFWP.js (removed) 1.59 kB 🟢 -1.59 kB 🟢 -830 B 🟢 -722 B
assets/markdownRendererUtil-DQHM4_S7.js (new) 1.59 kB 🔴 +1.59 kB 🔴 +833 B 🔴 +722 B
assets/useErrorHandling-DvU6qehQ.js (removed) 1.54 kB 🟢 -1.54 kB 🟢 -646 B 🟢 -557 B
assets/useErrorHandling-u4bIcaMz.js (new) 1.54 kB 🔴 +1.54 kB 🔴 +646 B 🔴 +548 B
assets/envUtil-CT7ZrB-j.js (new) 489 B 🔴 +489 B 🔴 +309 B 🔴 +245 B
assets/envUtil-sFgUSLSD.js (removed) 489 B 🟢 -489 B 🟢 -307 B 🟢 -243 B
assets/useLoad3d-CAEpn2MZ.js (new) 311 B 🔴 +311 B 🔴 +165 B 🔴 +148 B
assets/useLoad3d-zRSHoGZQ.js (removed) 311 B 🟢 -311 B 🟢 -163 B 🟢 -147 B
assets/useSessionCookie-CzEmm1JW.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +80 B
assets/useSessionCookie-E7V95Enu.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -83 B
assets/useFeatureFlags-4AGwdJJ6.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -86 B
assets/useFeatureFlags-BdEinOXG.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +83 B
assets/useLoad3dViewer-BvS3wZ2_.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +84 B
assets/useLoad3dViewer-C3fycxeg.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -92 B
assets/useCurrentUser-C15Ojz4A.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +83 B
assets/useCurrentUser-D7f68eDB.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -84 B

Status: 25 added / 25 removed / 7 unchanged

Vendor & Third-Party — 15.3 MB (baseline 15.3 MB) • ⚪ 0 B

External libraries and shared vendor chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/vendor-other-BKD9OhS8.js (new) 1.87 MB 🔴 +1.87 MB 🔴 +405 kB 🔴 +326 kB
assets/vendor-other-CfhK6fWY.js (removed) 1.87 MB 🟢 -1.87 MB 🟢 -404 kB 🟢 -326 kB
assets/vendor-yjs-BiH7xZSO.js (removed) 246 kB 🟢 -246 kB 🟢 -53.3 kB 🟢 -44.1 kB
assets/vendor-yjs-DF9PYGyQ.js (new) 246 kB 🔴 +246 kB 🔴 +53.3 kB 🔴 +44.2 kB
assets/vendor-vueuse-BA2QXdyV.js (new) 155 kB 🔴 +155 kB 🔴 +38.8 kB 🔴 +33.1 kB
assets/vendor-vueuse-D6IWVgo4.js (removed) 155 kB 🟢 -155 kB 🟢 -38.8 kB 🟢 -33.1 kB
assets/vendor-i18n-BVGbvPvq.js (new) 140 kB 🔴 +140 kB 🔴 +30.7 kB 🔴 +25.8 kB
assets/vendor-i18n-C9te7Dy0.js (removed) 140 kB 🟢 -140 kB 🟢 -30.7 kB 🟢 -25.8 kB
assets/vendor-markdown-DaMlfZYH.js (removed) 120 kB 🟢 -120 kB 🟢 -30.3 kB 🟢 -26.5 kB
assets/vendor-markdown-ZOM1KON6.js (new) 120 kB 🔴 +120 kB 🔴 +30.3 kB 🔴 +26.4 kB
assets/vendor-axios-CCRjO_8I.js (new) 110 kB 🔴 +110 kB 🔴 +29.6 kB 🔴 +25.6 kB
assets/vendor-axios-T2xEda2b.js (removed) 110 kB 🟢 -110 kB 🟢 -29.6 kB 🟢 -25.6 kB
assets/vendor-zod-9ZYBvZOX.js (new) 105 kB 🔴 +105 kB 🔴 +18.8 kB 🔴 +16 kB
assets/vendor-zod-cnyoNRiP.js (removed) 105 kB 🟢 -105 kB 🟢 -18.8 kB 🟢 -16 kB

Status: 7 added / 7 removed / 9 unchanged

Other — 10.7 MB (baseline 10.7 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/nodeDefs-Dxa-fm2C.js (new) 515 kB 🔴 +515 kB 🔴 +86.4 kB 🔴 +63.5 kB
assets/nodeDefs-Ksdf1VS0.js (removed) 515 kB 🟢 -515 kB 🟢 -86.4 kB 🟢 -63.5 kB
assets/main-BugbDHpi.js (new) 183 kB 🔴 +183 kB 🔴 +53.7 kB 🔴 +45.1 kB
assets/main-DTSJ5VRc.js (removed) 183 kB 🟢 -183 kB 🟢 -53.7 kB 🟢 -45.1 kB
assets/core-3ya3oS9W.js (new) 119 kB 🔴 +119 kB 🔴 +30.6 kB 🔴 +25.9 kB
assets/core-BMuYUkIs.js (removed) 119 kB 🟢 -119 kB 🟢 -30.6 kB 🟢 -25.9 kB
assets/WidgetSelect-B8MDrPWS.js (removed) 83.9 kB 🟢 -83.9 kB 🟢 -18.3 kB 🟢 -15.8 kB
assets/WidgetSelect-TxWuyY-w.js (new) 83.9 kB 🔴 +83.9 kB 🔴 +18.3 kB 🔴 +15.8 kB
assets/Load3DControls-BfupC4Z2.js (removed) 46.8 kB 🟢 -46.8 kB 🟢 -7.56 kB 🟢 -6.61 kB
assets/Load3DControls-QI40smyi.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +7.57 kB 🔴 +6.61 kB
assets/SubscriptionTransitionPreviewWorkspace-BmZanYjU.js (new) 45.7 kB 🔴 +45.7 kB 🔴 +9.48 kB 🔴 +8.37 kB
assets/SubscriptionTransitionPreviewWorkspace-DxpvJLXg.js (removed) 45.7 kB 🟢 -45.7 kB 🟢 -9.48 kB 🟢 -8.38 kB
assets/SubscriptionRequiredDialogContentUnified-C6Dehlwc.js (removed) 41.2 kB 🟢 -41.2 kB 🟢 -9.15 kB 🟢 -7.97 kB
assets/SubscriptionRequiredDialogContentUnified-D2_6-D7f.js (new) 41.2 kB 🔴 +41.2 kB 🔴 +9.15 kB 🔴 +7.97 kB
assets/nodeDefs-CaiMvYTp.js (removed) 36.9 kB 🟢 -36.9 kB 🟢 -9.46 kB 🟢 -8.23 kB
assets/nodeDefs-CN6EDX8_.js (new) 36.9 kB 🔴 +36.9 kB 🔴 +9.46 kB 🔴 +8.24 kB
assets/WorkspacePanelContent-BW-xo_V6.js (new) 34.5 kB 🔴 +34.5 kB 🔴 +7.49 kB 🔴 +6.6 kB
assets/WorkspacePanelContent-NhUsH3qr.js (removed) 34.5 kB 🟢 -34.5 kB 🟢 -7.48 kB 🟢 -6.61 kB
assets/WidgetPainter-Bpk5-cE0.js (removed) 32.7 kB 🟢 -32.7 kB 🟢 -7.9 kB 🟢 -7 kB
assets/WidgetPainter-Ck1uTj7O.js (new) 32.7 kB 🔴 +32.7 kB 🔴 +7.9 kB 🔴 +7.01 kB
assets/Load3dViewerContent-SYIR4Wa2.js (new) 30.9 kB 🔴 +30.9 kB 🔴 +6.3 kB 🔴 +5.46 kB
assets/Load3dViewerContent-wIeCjFVK.js (removed) 30.9 kB 🟢 -30.9 kB 🟢 -6.3 kB 🟢 -5.49 kB
assets/HdrViewerContent-89OVTQ5a.js (new) 29.2 kB 🔴 +29.2 kB 🔴 +8.09 kB 🔴 +7.15 kB
assets/HdrViewerContent-DafSC2m9.js (removed) 29.2 kB 🟢 -29.2 kB 🟢 -8.09 kB 🟢 -7.14 kB
assets/WidgetBoundingBoxes-BV9cKuHO.js (new) 28.6 kB 🔴 +28.6 kB 🔴 +7.9 kB 🔴 +7.01 kB
assets/WidgetBoundingBoxes-Drxr7_M0.js (removed) 28.6 kB 🟢 -28.6 kB 🟢 -7.9 kB 🟢 -7 kB
assets/SubscriptionRequiredDialogContent-BsZ6lEXv.js (new) 26.8 kB 🔴 +26.8 kB 🔴 +6.62 kB 🔴 +5.86 kB
assets/SubscriptionRequiredDialogContent-BY5DAYKZ.js (removed) 26.8 kB 🟢 -26.8 kB 🟢 -6.63 kB 🟢 -5.84 kB
assets/initHostTelemetry-DAy2Ev4b.js (removed) 25.2 kB 🟢 -25.2 kB 🟢 -6.22 kB 🟢 -5.18 kB
assets/initHostTelemetry-DqrW8mm5.js (new) 25.2 kB 🔴 +25.2 kB 🔴 +6.22 kB 🔴 +5.19 kB
assets/SubscriptionRequiredDialogContentWorkspace-CtdCo5U8.js (removed) 24.6 kB 🟢 -24.6 kB 🟢 -5.65 kB 🟢 -4.97 kB
assets/SubscriptionRequiredDialogContentWorkspace-DOJIST0_.js (new) 24.6 kB 🔴 +24.6 kB 🔴 +5.66 kB 🔴 +4.97 kB
assets/ColorPicker-BvqaHzkE.js (new) 24.3 kB 🔴 +24.3 kB 🔴 +6.34 kB 🔴 +5.59 kB
assets/ColorPicker-Vpsi2ahj.js (removed) 24.3 kB 🟢 -24.3 kB 🟢 -6.34 kB 🟢 -5.6 kB
assets/WidgetImageCrop-CWae8NWM.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.75 kB 🟢 -5.04 kB
assets/WidgetImageCrop-DbNvjgZ7.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.75 kB 🔴 +5.04 kB
assets/load3d-B8VJkVej.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +5.18 kB 🔴 +4.5 kB
assets/load3d-ClQjrfv6.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -5.18 kB 🟢 -4.5 kB
assets/CurrentUserPopoverWorkspace-CLj4c-b7.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +4.7 kB 🔴 +4.2 kB
assets/CurrentUserPopoverWorkspace-LZ54QH7L.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.7 kB 🟢 -4.19 kB
assets/SignInContent-1cBLaJYZ.js (new) 19.9 kB 🔴 +19.9 kB 🔴 +5 kB 🔴 +4.36 kB
assets/SignInContent-BLQIXd6h.js (removed) 19.9 kB 🟢 -19.9 kB 🟢 -5 kB 🟢 -4.37 kB
assets/Load3D-BCOpJwN-.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.51 kB 🟢 -3.93 kB
assets/Load3D-BlMXSgqs.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.52 kB 🔴 +3.93 kB
assets/WidgetInputNumber-BnVqWddO.js (removed) 19 kB 🟢 -19 kB 🟢 -4.79 kB 🟢 -4.25 kB
assets/WidgetInputNumber-Bv0tMJGs.js (new) 19 kB 🔴 +19 kB 🔴 +4.79 kB 🔴 +4.25 kB
assets/CreditsTile-CO8mcwAO.js (new) 17 kB 🔴 +17 kB 🔴 +4.52 kB 🔴 +3.99 kB
assets/CreditsTile-Rb97aoDr.js (removed) 17 kB 🟢 -17 kB 🟢 -4.52 kB 🟢 -3.99 kB
assets/SubscriptionPanelContentWorkspace-2LiMfAET.js (removed) 16.8 kB 🟢 -16.8 kB 🟢 -4.12 kB 🟢 -3.67 kB
assets/SubscriptionPanelContentWorkspace-CvKDR9c-.js (new) 16.8 kB 🔴 +16.8 kB 🔴 +4.13 kB 🔴 +3.66 kB
assets/WidgetRecordAudio-BvNHlmHV.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.63 kB 🔴 +4.14 kB
assets/WidgetRecordAudio-DxOL-wpu.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.63 kB 🟢 -4.14 kB
assets/WidgetRange-DwCWnU-R.js (removed) 16.2 kB 🟢 -16.2 kB 🟢 -4.17 kB 🟢 -3.73 kB
assets/WidgetRange-mvNRQgJP.js (new) 16.2 kB 🔴 +16.2 kB 🔴 +4.17 kB 🔴 +3.72 kB
assets/commands-CFf0b0b9.js (removed) 15.3 kB 🟢 -15.3 kB 🟢 -3.18 kB 🟢 -2.69 kB
assets/commands-DD5bW_sz.js (new) 15.3 kB 🔴 +15.3 kB 🔴 +3.18 kB 🔴 +2.69 kB
assets/DialogHeader-BNnVNjLI.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.79 kB 🟢 -3.36 kB
assets/DialogHeader-BXlz-DFD.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.79 kB 🔴 +3.36 kB
assets/WaveAudioPlayer-DaCOYu-p.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.48 kB 🟢 -3.06 kB
assets/WaveAudioPlayer-RWJ8AvK3.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.49 kB 🔴 +3.06 kB
assets/i18n-BtDGX7sQ.js (new) 11.7 kB 🔴 +11.7 kB 🔴 +3.17 kB 🔴 +2.69 kB
assets/i18n-D4Sh7fum.js (removed) 11.7 kB 🟢 -11.7 kB 🟢 -3.17 kB 🟢 -2.66 kB
assets/WidgetCurve-CqOkGr0e.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.5 kB 🔴 +3.17 kB
assets/WidgetCurve-DQMc064j.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.5 kB 🟢 -3.16 kB
assets/AudioPreviewPlayer-BV5yLDv-.js (new) 10.6 kB 🔴 +10.6 kB 🔴 +3.06 kB 🔴 +2.73 kB
assets/AudioPreviewPlayer-DkKWC9Xr.js (removed) 10.6 kB 🟢 -10.6 kB 🟢 -3.06 kB 🟢 -2.73 kB
assets/TeamWorkspacesDialogContent-BRgsjlfg.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -3 kB 🟢 -2.66 kB
assets/TeamWorkspacesDialogContent-DqLF3jti.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +3 kB 🔴 +2.66 kB
assets/SelectValue-8qf8Do06.js (new) 10.2 kB 🔴 +10.2 kB 🔴 +2.49 kB 🔴 +2.19 kB
assets/SelectValue-CsVgjGxW.js (removed) 10.2 kB 🟢 -10.2 kB 🟢 -2.48 kB 🟢 -2.19 kB
assets/Load3DConfiguration-DuH5D_8X.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +2.66 kB 🔴 +2.35 kB
assets/Load3DConfiguration-ILtEj04v.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -2.66 kB 🟢 -2.35 kB
assets/nodeTemplates-BENFoFBx.js (removed) 8.33 kB 🟢 -8.33 kB 🟢 -2.88 kB 🟢 -2.54 kB
assets/nodeTemplates-wfPkqC2r.js (new) 8.33 kB 🔴 +8.33 kB 🔴 +2.88 kB 🔴 +2.54 kB
assets/onboardingCloudRoutes-7bkbzmDM.js (removed) 8.24 kB 🟢 -8.24 kB 🟢 -2.57 kB 🟢 -2.2 kB
assets/onboardingCloudRoutes-BRV-DLbm.js (new) 8.24 kB 🔴 +8.24 kB 🔴 +2.57 kB 🔴 +2.21 kB
assets/NightlySurveyController-DE5yrOZ_.js (removed) 7.95 kB 🟢 -7.95 kB 🟢 -2.7 kB 🟢 -2.39 kB
assets/NightlySurveyController-DUe1uX1e.js (new) 7.95 kB 🔴 +7.95 kB 🔴 +2.7 kB 🔴 +2.37 kB
assets/WidgetImageCompare-BjrjlxrG.js (new) 7.82 kB 🔴 +7.82 kB 🔴 +2.25 kB 🔴 +1.97 kB
assets/WidgetImageCompare-DJ9_7Szh.js (removed) 7.82 kB 🟢 -7.82 kB 🟢 -2.25 kB 🟢 -1.97 kB
assets/Popover-DVcdgu9p.js (new) 7.18 kB 🔴 +7.18 kB 🔴 +2.59 kB 🔴 +2.28 kB
assets/Popover-mgsmIMTg.js (removed) 7.18 kB 🟢 -7.18 kB 🟢 -2.59 kB 🟢 -2.27 kB
assets/InviteMemberDialogContent-DAUEA64N.js (new) 6.76 kB 🔴 +6.76 kB 🔴 +2.22 kB 🔴 +1.96 kB
assets/InviteMemberDialogContent-us_iy7yf.js (removed) 6.76 kB 🟢 -6.76 kB 🟢 -2.22 kB 🟢 -1.96 kB
assets/commands-B0yn9kyb.js (removed) 6.45 kB 🟢 -6.45 kB 🟢 -1.52 kB 🟢 -1.31 kB
assets/commands-DHDnKkJV.js (new) 6.45 kB 🔴 +6.45 kB 🔴 +1.52 kB 🔴 +1.31 kB
assets/WidgetWithControl-CFFiSY7-.js (new) 6.3 kB 🔴 +6.3 kB 🔴 +2.54 kB 🔴 +2.25 kB
assets/WidgetWithControl-DdDx6T00.js (removed) 6.3 kB 🟢 -6.3 kB 🟢 -2.54 kB 🟢 -2.25 kB
assets/AnimationControls-BAlBClzB.js (new) 6.16 kB 🔴 +6.16 kB 🔴 +1.88 kB 🔴 +1.67 kB
assets/AnimationControls-BYDd_rlr.js (removed) 6.16 kB 🟢 -6.16 kB 🟢 -1.88 kB 🟢 -1.67 kB
assets/main-D_MPlcqU.js (new) 5.68 kB 🔴 +5.68 kB 🔴 +1.82 kB 🔴 +1.54 kB
assets/main-DXwJFkqC.js (removed) 5.68 kB 🟢 -5.68 kB 🟢 -1.83 kB 🟢 -1.56 kB
assets/load3dPreviewExtensions-as2sdB8b.js (removed) 5.38 kB 🟢 -5.38 kB 🟢 -1.75 kB 🟢 -1.54 kB
assets/load3dPreviewExtensions-BJxN42I5.js (new) 5.38 kB 🔴 +5.38 kB 🔴 +1.75 kB 🔴 +1.54 kB
assets/PaletteSwatchRow-BVZvBnAt.js (removed) 5.27 kB 🟢 -5.27 kB 🟢 -1.98 kB 🟢 -1.75 kB
assets/PaletteSwatchRow-D0z2ucPi.js (new) 5.27 kB 🔴 +5.27 kB 🔴 +1.99 kB 🔴 +1.75 kB
assets/FreeTierDialogContent-BJ-Acj7T.js (removed) 5.23 kB 🟢 -5.23 kB 🟢 -1.77 kB 🟢 -1.55 kB
assets/FreeTierDialogContent-C8f_TCc5.js (new) 5.23 kB 🔴 +5.23 kB 🔴 +1.77 kB 🔴 +1.55 kB
assets/CreateWorkspaceDialogContent-C3zog2-k.js (new) 5.19 kB 🔴 +5.19 kB 🔴 +1.83 kB 🔴 +1.58 kB
assets/CreateWorkspaceDialogContent-VX0EE_YS.js (removed) 5.19 kB 🟢 -5.19 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/CloudNotificationContent-86S56LDi.js (new) 5.11 kB 🔴 +5.11 kB 🔴 +1.79 kB 🔴 +1.54 kB
assets/CloudNotificationContent-hddgO5GU.js (removed) 5.11 kB 🟢 -5.11 kB 🟢 -1.79 kB 🟢 -1.54 kB
assets/missingModelDownload-B0k-vQFk.js (new) 5.07 kB 🔴 +5.07 kB 🔴 +1.98 kB 🔴 +1.72 kB
assets/missingModelDownload-BUTghu0G.js (removed) 5.07 kB 🟢 -5.07 kB 🟢 -1.98 kB 🟢 -1.72 kB
assets/ChangeMemberRoleDialogContent-bhsZivAj.js (new) 5.04 kB 🔴 +5.04 kB 🔴 +1.67 kB 🔴 +1.46 kB
assets/ChangeMemberRoleDialogContent-CkRXqlgT.js (removed) 5.04 kB 🟢 -5.04 kB 🟢 -1.66 kB 🟢 -1.45 kB
assets/EditWorkspaceDialogContent-B2zXmIhB.js (new) 5 kB 🔴 +5 kB 🔴 +1.8 kB 🔴 +1.56 kB
assets/EditWorkspaceDialogContent-BL7y20RC.js (removed) 5 kB 🟢 -5 kB 🟢 -1.79 kB 🟢 -1.56 kB
assets/WidgetTextarea-_eM6b9Er.js (removed) 4.86 kB 🟢 -4.86 kB 🟢 -1.9 kB 🟢 -1.66 kB
assets/WidgetTextarea-CDVGAgJr.js (new) 4.86 kB 🔴 +4.86 kB 🔴 +1.9 kB 🔴 +1.68 kB
assets/DowngradeRemoveMembersDialogContent-B05xyFIk.js (new) 4.83 kB 🔴 +4.83 kB 🔴 +1.71 kB 🔴 +1.47 kB
assets/DowngradeRemoveMembersDialogContent-Bdzb5y59.js (removed) 4.83 kB 🟢 -4.83 kB 🟢 -1.7 kB 🟢 -1.47 kB
assets/saveMesh-B_qNFzQn.js (removed) 4.79 kB 🟢 -4.79 kB 🟢 -1.54 kB 🟢 -1.37 kB
assets/saveMesh-F4Gd1Ha4.js (new) 4.79 kB 🔴 +4.79 kB 🔴 +1.54 kB 🔴 +1.36 kB
assets/Preview3d-BRdhqhey.js (removed) 4.59 kB 🟢 -4.59 kB 🟢 -1.43 kB 🟢 -1.23 kB
assets/Preview3d-Da32fPvW.js (new) 4.59 kB 🔴 +4.59 kB 🔴 +1.43 kB 🔴 +1.24 kB
assets/ValueControlPopover-CfrVoJ_D.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.59 kB 🟢 -1.42 kB
assets/ValueControlPopover-DrxaVSAC.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.59 kB 🔴 +1.42 kB
assets/CancelSubscriptionDialogContent-BUcOSDAt.js (removed) 4.54 kB 🟢 -4.54 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/CancelSubscriptionDialogContent-Ejvqre_b.js (new) 4.54 kB 🔴 +4.54 kB 🔴 +1.66 kB 🔴 +1.44 kB
assets/ApiNodesSignInContent-BHdxrekw.js (new) 4.14 kB 🔴 +4.14 kB 🔴 +1.34 kB 🔴 +1.18 kB
assets/ApiNodesSignInContent-Dh_v1ggl.js (removed) 4.14 kB 🟢 -4.14 kB 🟢 -1.34 kB 🟢 -1.18 kB
assets/Slider-CtoqgeX3.js (removed) 3.92 kB 🟢 -3.92 kB 🟢 -1.45 kB 🟢 -1.26 kB
assets/Slider-DnomINn4.js (new) 3.92 kB 🔴 +3.92 kB 🔴 +1.45 kB 🔴 +1.26 kB
assets/DeleteWorkspaceDialogContent-Bl9BTzoT.js (new) 3.91 kB 🔴 +3.91 kB 🔴 +1.47 kB 🔴 +1.27 kB
assets/DeleteWorkspaceDialogContent-Cl9YqwLY.js (removed) 3.91 kB 🟢 -3.91 kB 🟢 -1.47 kB 🟢 -1.27 kB
assets/WidgetBoundingBox-DXMBXjBy.js (removed) 3.82 kB 🟢 -3.82 kB 🟢 -1.06 kB 🟢 -922 B
assets/WidgetBoundingBox-OvHQTuPn.js (new) 3.82 kB 🔴 +3.82 kB 🔴 +1.06 kB 🔴 +923 B
assets/WidgetGalleria-CkBKWJJV.js (removed) 3.8 kB 🟢 -3.8 kB 🟢 -1.48 kB 🟢 -1.32 kB
assets/WidgetGalleria-Cqyl01yc.js (new) 3.8 kB 🔴 +3.8 kB 🔴 +1.48 kB 🔴 +1.32 kB
assets/LeaveWorkspaceDialogContent-BAuMaUPv.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.42 kB 🟢 -1.23 kB
assets/LeaveWorkspaceDialogContent-BZ93ZcYH.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.42 kB 🔴 +1.23 kB
assets/RemoveMemberDialogContent-B1ZUJ6fQ.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/RemoveMemberDialogContent-BPF1KPmN.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.37 kB 🟢 -1.18 kB
assets/WidgetToggleSwitch-7ynQg4E6.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.4 kB 🟢 -1.23 kB
assets/WidgetToggleSwitch-DcmQi-Ew.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.4 kB 🔴 +1.24 kB
assets/RevokeInviteDialogContent-0aSbnFkX.js (removed) 3.63 kB 🟢 -3.63 kB 🟢 -1.38 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-ano43LtV.js (new) 3.63 kB 🔴 +3.63 kB 🔴 +1.38 kB 🔴 +1.21 kB
assets/InviteMemberUpsellDialogContent-D8pO6V5K.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.25 kB 🔴 +1.1 kB
assets/InviteMemberUpsellDialogContent-qscr4rr6.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.25 kB 🟢 -1.1 kB
assets/Media3DTop-CRKmjLKa.js (removed) 3.26 kB 🟢 -3.26 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/Media3DTop-DhIK8NnW.js (new) 3.26 kB 🔴 +3.26 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/WidgetMarkdown-3ruGQl8B.js (removed) 3.1 kB 🟢 -3.1 kB 🟢 -1.27 kB 🟢 -1.13 kB
assets/WidgetMarkdown-CuDnOfsv.js (new) 3.1 kB 🔴 +3.1 kB 🔴 +1.27 kB 🔴 +1.1 kB
assets/WidgetInputText-DKmQV4dC.js (new) 3.07 kB 🔴 +3.07 kB 🔴 +1.29 kB 🔴 +1.16 kB
assets/WidgetInputText-DlKUelvm.js (removed) 3.07 kB 🟢 -3.07 kB 🟢 -1.29 kB 🟢 -1.16 kB
assets/GlobalToast-D9YBCgrR.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/GlobalToast-Djwd4LjN.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.08 kB
assets/MediaVideoTop-BY47LAQQ.js (removed) 2.91 kB 🟢 -2.91 kB 🟢 -1.18 kB 🟢 -1.03 kB
assets/MediaVideoTop-ChRMNrmF.js (new) 2.91 kB 🔴 +2.91 kB 🔴 +1.18 kB 🔴 +1.03 kB
assets/load3dAdvanced-B26DPuHs.js (new) 2.85 kB 🔴 +2.85 kB 🔴 +1.12 kB 🔴 +974 B
assets/load3dAdvanced-CCNQ6sum.js (removed) 2.85 kB 🟢 -2.85 kB 🟢 -1.12 kB 🟢 -972 B
assets/ErrorPanelSurveyCta-0xIO7qk0.js (new) 2.64 kB 🔴 +2.64 kB 🔴 +1.17 kB 🔴 +1.03 kB
assets/ErrorPanelSurveyCta-DlSAASvT.js (removed) 2.64 kB 🟢 -2.64 kB 🟢 -1.16 kB 🟢 -1.03 kB
assets/SubscribeToRun-B0VCTVKk.js (removed) 2.53 kB 🟢 -2.53 kB 🟢 -1.1 kB 🟢 -971 B
assets/SubscribeToRun-BspPs9EZ.js (new) 2.53 kB 🔴 +2.53 kB 🔴 +1.1 kB 🔴 +981 B
assets/WidgetLayoutField-BmivMwZO.js (new) 2.43 kB 🔴 +2.43 kB 🔴 +1.06 kB 🔴 +966 B
assets/WidgetLayoutField-C5V0E2SE.js (removed) 2.43 kB 🟢 -2.43 kB 🟢 -1.06 kB 🟢 -967 B
assets/MediaImageTop-a-FQcJGd.js (removed) 2.06 kB 🟢 -2.06 kB 🟢 -993 B 🟢 -849 B
assets/MediaImageTop-D3LO4Gm3.js (new) 2.06 kB 🔴 +2.06 kB 🔴 +995 B 🔴 +890 B
assets/graphHasMissingNodes-CH7puKtg.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +907 B 🔴 +790 B
assets/graphHasMissingNodes-ky42RBin.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -904 B 🟢 -786 B
assets/WidgetColorPicker-CQB5D0oz.js (new) 1.74 kB 🔴 +1.74 kB 🔴 +782 B 🔴 +695 B
assets/WidgetColorPicker-CqQmyA97.js (removed) 1.74 kB 🟢 -1.74 kB 🟢 -784 B 🟢 -696 B
assets/Loader-Cl8oWHz1.js (new) 1.69 kB 🔴 +1.69 kB 🔴 +815 B 🔴 +751 B
assets/Loader-D7pweeeu.js (removed) 1.69 kB 🟢 -1.69 kB 🟢 -810 B 🟢 -721 B
assets/WidgetColors-B6lGm2oV.js (new) 1.68 kB 🔴 +1.68 kB 🔴 +832 B 🔴 +738 B
assets/WidgetColors-BpKkEVMg.js (removed) 1.68 kB 🟢 -1.68 kB 🟢 -833 B 🟢 -739 B
assets/MediaAudioTop-BkGx9Ldl.js (new) 1.67 kB 🔴 +1.67 kB 🔴 +838 B 🔴 +696 B
assets/MediaAudioTop-DnoQyLEr.js (removed) 1.67 kB 🟢 -1.67 kB 🟢 -836 B 🟢 -701 B
assets/Textarea-BmspCEI_.js (removed) 1.61 kB 🟢 -1.61 kB 🟢 -841 B 🟢 -736 B
assets/Textarea-thhAgjhi.js (new) 1.61 kB 🔴 +1.61 kB 🔴 +842 B 🔴 +739 B
assets/signInSchema-Cbqr-8Z4.js (new) 1.6 kB 🔴 +1.6 kB 🔴 +586 B 🔴 +513 B
assets/signInSchema-E4xdH6gJ.js (removed) 1.6 kB 🟢 -1.6 kB 🟢 -584 B 🟢 -519 B
assets/VideoPlayOverlay-CUzF3E0P.js (removed) 1.52 kB 🟢 -1.52 kB 🟢 -759 B 🟢 -675 B
assets/VideoPlayOverlay-DmJMqcRK.js (new) 1.52 kB 🔴 +1.52 kB 🔴 +763 B 🔴 +676 B
assets/tierBenefits-B0_qaiNd.js (new) 1.14 kB 🔴 +1.14 kB 🔴 +494 B 🔴 +437 B
assets/tierBenefits-s7vuRR7L.js (removed) 1.14 kB 🟢 -1.14 kB 🟢 -492 B 🟢 -435 B
assets/CloudRunButtonWrapper-DY6VcW4F.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -549 B 🟢 -511 B
assets/CloudRunButtonWrapper-iqKGkdCm.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +550 B 🔴 +490 B
assets/cloudSessionCookie-CMjfCVZs.js (new) 991 B 🔴 +991 B 🔴 +468 B 🔴 +435 B
assets/cloudSessionCookie-ZgfdxYL5.js (removed) 991 B 🟢 -991 B 🟢 -469 B 🟢 -413 B
assets/cloudBadges-BWdZc5e3.js (new) 973 B 🔴 +973 B 🔴 +551 B 🔴 +502 B
assets/cloudBadges-C1g1g_jN.js (removed) 973 B 🟢 -973 B 🟢 -549 B 🟢 -504 B
assets/Load3DAdvanced-DoL015jz.js (removed) 813 B 🟢 -813 B 🟢 -455 B 🟢 -384 B
assets/Load3DAdvanced-DqZ9NpGW.js (new) 813 B 🔴 +813 B 🔴 +456 B 🔴 +410 B
assets/nightlyBadges-CWSYzLcE.js (new) 464 B 🔴 +464 B 🔴 +307 B 🔴 +254 B
assets/nightlyBadges-VGSbkqZS.js (removed) 464 B 🟢 -464 B 🟢 -306 B 🟢 -253 B
assets/src-B93GtxZ7.js (new) 446 B 🔴 +446 B 🔴 +319 B 🔴 +268 B
assets/src-CGrsm_F8.js (removed) 446 B 🟢 -446 B 🟢 -319 B 🟢 -269 B
assets/types-4cVPtFn2.js (new) 313 B 🔴 +313 B 🔴 +224 B 🔴 +168 B
assets/types-LUZjNlbK.js (removed) 313 B 🟢 -313 B 🟢 -224 B 🟢 -171 B
assets/missingModelDownload-DK4XwPJM.js (removed) 228 B 🟢 -228 B 🟢 -149 B 🟢 -129 B
assets/missingModelDownload-jRbzWZyZ.js (new) 228 B 🔴 +228 B 🔴 +150 B 🔴 +129 B
assets/SubscriptionPanelContentWorkspace--aL0sXNV.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -104 B
assets/SubscriptionPanelContentWorkspace-CDjIuSsL.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +92 B
assets/Load3dViewerContent-BeP9MO7b.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +87 B
assets/Load3dViewerContent-Bqb7OqlB.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -91 B
assets/WidgetBoundingBox-6CffvGav.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -90 B
assets/WidgetBoundingBox-DHLZKrGp.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +94 B
assets/Load3DAdvanced-CDL-PrtQ.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +88 B
assets/Load3DAdvanced-DjjuYRx0.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -89 B
assets/WidgetLegacy-BtOfjWSE.js (new) 119 B 🔴 +119 B 🔴 +108 B 🔴 +95 B
assets/WidgetLegacy-Rn8JEZFk.js (removed) 119 B 🟢 -119 B 🟢 -108 B 🟢 -95 B
assets/workflowDraftStoreV2-DPFtdSNw.js (new) 113 B 🔴 +113 B 🔴 +105 B 🔴 +111 B
assets/workflowDraftStoreV2-fKssGzV6.js (removed) 113 B 🟢 -113 B 🟢 -105 B 🟢 -110 B
assets/Load3D-BtZJUZAK.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -85 B
assets/Load3D-DMNHmEzz.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +79 B
assets/i18n-Cv_k983Z.js (removed) 97 B 🟢 -97 B 🟢 -92 B 🟢 -85 B
assets/i18n-DQbzZA-q.js (new) 97 B 🔴 +97 B 🔴 +92 B 🔴 +88 B
assets/changeTracker-CsJXSV1M.js (new) 93 B 🔴 +93 B 🔴 +95 B 🔴 +83 B
assets/changeTracker-e2IbVVSi.js (removed) 93 B 🟢 -93 B 🟢 -95 B 🟢 -83 B

Status: 106 added / 106 removed / 55 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.3 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.0 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.0 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.5 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 54.7 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 77.8 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.4 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.6 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 54.5 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.4 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.4 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 143ms TBT · 76.6 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.0 MB heap
vue-large-graph-idle: · 59.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 161.6 MB heap
vue-large-graph-pan: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 161.4 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.5 MB heap

✅ No regressions detected.

All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms -1%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 8ms 8ms -6% z=-3.5
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 10 8 -20% z=-5.6
canvas-idle: task duration 362ms 407ms +12% z=0.4
canvas-idle: script duration 20ms 15ms -26% z=-4.6
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 54.0 MB 60.3 MB +12%
canvas-idle: DOM nodes 20 -281 -1505% z=-238.0
canvas-idle: event listeners 6 -199 -3417% z=-44.5
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-1.5
canvas-mouse-sweep: p95 frame time 17ms 17ms -0%
canvas-mouse-sweep: layout duration 3ms 3ms +9% z=-0.8
canvas-mouse-sweep: style recalc duration 32ms 34ms +7% z=-2.7
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 72 74 +3% z=-2.0
canvas-mouse-sweep: task duration 667ms 748ms +12% z=-2.0
canvas-mouse-sweep: script duration 103ms 112ms +9% z=-3.7
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 49.2 MB 50.0 MB +2%
canvas-mouse-sweep: DOM nodes 54 -253 -569% z=-121.9
canvas-mouse-sweep: event listeners 4 -199 -5075% z=-49.8
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms +0%
canvas-zoom-sweep: layout duration 1ms 1ms -10% z=-1.4
canvas-zoom-sweep: style recalc duration 16ms 16ms -3% z=-2.3
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 31 -2% z=-1.7
canvas-zoom-sweep: task duration 287ms 303ms +6% z=-1.0
canvas-zoom-sweep: script duration 21ms 17ms -20% z=-3.4
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 58.0 MB 61.0 MB +5%
canvas-zoom-sweep: DOM nodes 77 -75 -197% z=-194.9
canvas-zoom-sweep: event listeners 19 -83 -534% z=-20.5
dom-widget-clipping: avg frame time 17ms 17ms +0% z=-0.2
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 7ms 9ms +20% z=-1.3
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 12 13 +4% z=-1.2
dom-widget-clipping: task duration 308ms 355ms +15% z=-0.6
dom-widget-clipping: script duration 51ms 56ms +10% z=-3.7
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 62.9 MB 55.5 MB -12%
dom-widget-clipping: DOM nodes 20 -129 -743% z=-106.2
dom-widget-clipping: event listeners 2 -102 -5175% variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 8ms 10ms +22% z=-2.3
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 10 -5% z=-6.7
large-graph-idle: task duration 548ms 503ms -8% z=-0.7
large-graph-idle: script duration 88ms 84ms -5% z=-1.7
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 59.3 MB 54.7 MB -8%
large-graph-idle: DOM nodes 20 -269 -1443% z=-324.4
large-graph-idle: event listeners 4 -199 -5075% z=-36.9
large-graph-pan: avg frame time 17ms 17ms -0% z=-0.2
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 20ms 17ms -13% z=-0.3
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 +0% z=-0.9
large-graph-pan: task duration 967ms 1025ms +6% z=-1.3
large-graph-pan: script duration 339ms 401ms +18% z=-0.3
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 79.7 MB 77.8 MB -2%
large-graph-pan: DOM nodes 18 -272 -1611% z=-176.4
large-graph-pan: event listeners 4 -197 -5025% z=-243.9
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms -0%
large-graph-zoom: layout duration 8ms 7ms -14%
large-graph-zoom: style recalc duration 20ms 16ms -20%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 67 64 -4%
large-graph-zoom: task duration 1177ms 1191ms +1%
large-graph-zoom: script duration 436ms 466ms +7%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 66.7 MB 64.4 MB -3%
large-graph-zoom: DOM nodes 16 10 -38%
large-graph-zoom: event listeners 8 8 +0%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms -0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 9ms 7ms -19% z=-2.9
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 9 -15% z=-1.6
minimap-idle: task duration 525ms 468ms -11% z=-1.2
minimap-idle: script duration 90ms 86ms -5% z=-1.2
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 61.8 MB 64.6 MB +5%
minimap-idle: DOM nodes 20 17 -15% z=-1.6
minimap-idle: event listeners 4 5 +25% z=0.6
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 11ms +7% z=-1.5
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 48 48 -1% z=-0.8
subgraph-dom-widget-clipping: task duration 311ms 361ms +16% z=-0.9
subgraph-dom-widget-clipping: script duration 101ms 117ms +16% z=-1.8
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 63.4 MB 54.5 MB -14%
subgraph-dom-widget-clipping: DOM nodes 22 -127 -675% z=-132.9
subgraph-dom-widget-clipping: event listeners 8 -96 -1294% z=-19.2
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms -0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 8ms 8ms +1% z=-2.5
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 11 11 -5% z=-0.6
subgraph-idle: task duration 357ms 372ms +4% z=0.1
subgraph-idle: script duration 18ms 12ms -33% z=-2.9
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 54.1 MB 53.4 MB -1%
subgraph-idle: DOM nodes 22 -283 -1384% z=-203.5
subgraph-idle: event listeners 6 -199 -3417% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.1
subgraph-mouse-sweep: p95 frame time 17ms 17ms +1%
subgraph-mouse-sweep: layout duration 4ms 4ms +22% z=-0.9
subgraph-mouse-sweep: style recalc duration 32ms 34ms +7% z=-2.6
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 76 +1% z=-2.1
subgraph-mouse-sweep: task duration 617ms 650ms +5% z=-1.7
subgraph-mouse-sweep: script duration 85ms 86ms +1% z=-2.3
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 46.0 MB 56.4 MB +23%
subgraph-mouse-sweep: DOM nodes 63 -103 -263% z=-75.8
subgraph-mouse-sweep: event listeners 4 -98 -2538% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms -0%
subgraph-transition-enter: p95 frame time 17ms 17ms +1%
subgraph-transition-enter: layout duration 10ms 12ms +13%
subgraph-transition-enter: style recalc duration 25ms 26ms +7%
subgraph-transition-enter: layout count 6 5 -17%
subgraph-transition-enter: style recalc count 17 17 +0%
subgraph-transition-enter: task duration 657ms 680ms +4%
subgraph-transition-enter: script duration 24ms 25ms +3%
subgraph-transition-enter: TBT 113ms 143ms +27%
subgraph-transition-enter: heap used 77.3 MB 76.6 MB -1%
subgraph-transition-enter: DOM nodes 13833 13833 +0%
subgraph-transition-enter: event listeners 2531 2533 +0%
viewport-pan-sweep: avg frame time 17ms 17ms -0%
viewport-pan-sweep: p95 frame time 17ms 17ms -1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 57ms 51ms -11%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 251 +0%
viewport-pan-sweep: task duration 3333ms 3426ms +3%
viewport-pan-sweep: script duration 1054ms 1184ms +12%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 64.3 MB 65.0 MB +1%
viewport-pan-sweep: DOM nodes 20 -265 -1423%
viewport-pan-sweep: event listeners 20 -183 -1015%
vue-large-graph-idle: avg frame time 17ms 17ms -2%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 11757ms 10728ms -9%
vue-large-graph-idle: script duration 504ms 542ms +7%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 162.9 MB 161.6 MB -1%
vue-large-graph-idle: DOM nodes -3302 -3300 -0%
vue-large-graph-idle: event listeners -16472 -16465 -0%
vue-large-graph-pan: avg frame time 17ms 17ms -0%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 19ms 16ms -19%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 64 66 +2%
vue-large-graph-pan: task duration 13661ms 13949ms +2%
vue-large-graph-pan: script duration 772ms 832ms +8%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 152.9 MB 161.4 MB +6%
vue-large-graph-pan: DOM nodes -3304 -3302 -0%
vue-large-graph-pan: event listeners -16470 -16468 -0%
workflow-execution: avg frame time 17ms 17ms -0% z=0.1
workflow-execution: p95 frame time 17ms 17ms +0%
workflow-execution: layout duration 1ms 1ms +1% z=-1.5
workflow-execution: style recalc duration 21ms 24ms +19% z=0.1
workflow-execution: layout count 5 5 +0% z=0.1
workflow-execution: style recalc count 18 18 -3% z=-0.2
workflow-execution: task duration 98ms 133ms +35% z=0.9
workflow-execution: script duration 16ms 17ms +7% z=-4.2
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 62.0 MB 55.5 MB -10%
workflow-execution: DOM nodes 159 20 -88% z=-19.9
workflow-execution: event listeners 71 -33 -146% z=-19.3
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-06-25T18:15:19.056Z",
  "gitSha": "ba1dfba3fdc0e4a79ca6b37c001bd2ec82be2360",
  "branch": "feat/ephemeral-env-features",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2056.9230000000402,
      "styleRecalcs": 6,
      "styleRecalcDurationMs": 5.487999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 437.75,
      "heapDeltaBytes": -7987100,
      "heapUsedBytes": 61178508,
      "domNodes": -294,
      "jsHeapTotalBytes": 19832832,
      "scriptDurationMs": 13.346000000000004,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-idle",
      "durationMs": 2052.5139999999737,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.934000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 375.53399999999993,
      "heapDeltaBytes": 13187552,
      "heapUsedBytes": 65253684,
      "domNodes": -268,
      "jsHeapTotalBytes": 16117760,
      "scriptDurationMs": 16.762,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1807.8160000000025,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 35.54,
      "layouts": 12,
      "layoutDurationMs": 3.2509999999999994,
      "taskDurationMs": 761.428,
      "heapDeltaBytes": -12977972,
      "heapUsedBytes": 56283464,
      "domNodes": -240,
      "jsHeapTotalBytes": 19046400,
      "scriptDurationMs": 113.93900000000001,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1776.7489999999952,
      "styleRecalcs": 73,
      "styleRecalcDurationMs": 32.821999999999996,
      "layouts": 12,
      "layoutDurationMs": 3.658,
      "taskDurationMs": 733.835,
      "heapDeltaBytes": -2526652,
      "heapUsedBytes": 48657736,
      "domNodes": -266,
      "jsHeapTotalBytes": 16117760,
      "scriptDurationMs": 109.68599999999999,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1725.0290000000064,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 16.425,
      "layouts": 6,
      "layoutDurationMs": 0.6179999999999999,
      "taskDurationMs": 336.56199999999995,
      "heapDeltaBytes": -4099120,
      "heapUsedBytes": 65119040,
      "domNodes": -227,
      "jsHeapTotalBytes": 12754944,
      "scriptDurationMs": 16.787,
      "eventListeners": -184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1708.1650000000081,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 14.886999999999999,
      "layouts": 6,
      "layoutDurationMs": 0.541,
      "taskDurationMs": 269.093,
      "heapDeltaBytes": 4843660,
      "heapUsedBytes": 62750584,
      "domNodes": 77,
      "jsHeapTotalBytes": 19136512,
      "scriptDurationMs": 16.779999999999998,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 595.2670000000353,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 9.014999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 382.033,
      "heapDeltaBytes": -22708376,
      "heapUsedBytes": 46583636,
      "domNodes": -279,
      "jsHeapTotalBytes": 5152768,
      "scriptDurationMs": 55.056,
      "eventListeners": -203,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 526.9939999999451,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 8.659,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 327.031,
      "heapDeltaBytes": 12228884,
      "heapUsedBytes": 69853172,
      "domNodes": 22,
      "jsHeapTotalBytes": 18612224,
      "scriptDurationMs": 56.689,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666682,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2049.004000000025,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 10.815,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 505.3510000000001,
      "heapDeltaBytes": -9893784,
      "heapUsedBytes": 57509100,
      "domNodes": -270,
      "jsHeapTotalBytes": -1298432,
      "scriptDurationMs": 85.047,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2034.5109999999522,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.915,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 500.359,
      "heapDeltaBytes": -10144380,
      "heapUsedBytes": 57220712,
      "domNodes": -267,
      "jsHeapTotalBytes": -1822720,
      "scriptDurationMs": 83.51700000000001,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2100.977999999998,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 16.742,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 992.455,
      "heapDeltaBytes": 12432200,
      "heapUsedBytes": 81118724,
      "domNodes": -272,
      "jsHeapTotalBytes": -1880064,
      "scriptDurationMs": 384.369,
      "eventListeners": -197,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2116.029000000026,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 17.436999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1058.341,
      "heapDeltaBytes": 13525640,
      "heapUsedBytes": 82023240,
      "domNodes": -272,
      "jsHeapTotalBytes": -1355776,
      "scriptDurationMs": 418.192,
      "eventListeners": -197,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3044.5049999999583,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 15.996999999999998,
      "layouts": 60,
      "layoutDurationMs": 6.8839999999999995,
      "taskDurationMs": 1207.247,
      "heapDeltaBytes": 12591080,
      "heapUsedBytes": 67962324,
      "domNodes": 10,
      "jsHeapTotalBytes": 1310720,
      "scriptDurationMs": 479.57,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3072.3860000000514,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 16.257,
      "layouts": 60,
      "layoutDurationMs": 6.902000000000001,
      "taskDurationMs": 1174.347,
      "heapDeltaBytes": 11906476,
      "heapUsedBytes": 67056656,
      "domNodes": 10,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 452.532,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2016.0570000000462,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 6.831,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 464.54599999999994,
      "heapDeltaBytes": 11053820,
      "heapUsedBytes": 70171476,
      "domNodes": 16,
      "jsHeapTotalBytes": 6029312,
      "scriptDurationMs": 85.988,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2010.0259999999253,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.571999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 472.117,
      "heapDeltaBytes": -8634128,
      "heapUsedBytes": 65216600,
      "domNodes": 18,
      "jsHeapTotalBytes": 7745536,
      "scriptDurationMs": 85.778,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 571.9899999999711,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.511,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 385.2060000000001,
      "heapDeltaBytes": -21909380,
      "heapUsedBytes": 47371752,
      "domNodes": -275,
      "jsHeapTotalBytes": 4890624,
      "scriptDurationMs": 118.516,
      "eventListeners": -197,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 543.4179999999742,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 11.161,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 336.26,
      "heapDeltaBytes": 8055020,
      "heapUsedBytes": 66856936,
      "domNodes": 22,
      "jsHeapTotalBytes": 20447232,
      "scriptDurationMs": 114.55799999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2038.755999999978,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.685,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 376.14799999999997,
      "heapDeltaBytes": -8253816,
      "heapUsedBytes": 60988352,
      "domNodes": -277,
      "jsHeapTotalBytes": 20357120,
      "scriptDurationMs": 12.771999999999998,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2008.2159999999476,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.160999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 367.359,
      "heapDeltaBytes": -1493108,
      "heapUsedBytes": 50993108,
      "domNodes": -288,
      "jsHeapTotalBytes": 17690624,
      "scriptDurationMs": 12.062,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1725.9520000000066,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 33.665,
      "layouts": 16,
      "layoutDurationMs": 4.91,
      "taskDurationMs": 667.299,
      "heapDeltaBytes": 16965968,
      "heapUsedBytes": 69532972,
      "domNodes": -268,
      "jsHeapTotalBytes": 14282752,
      "scriptDurationMs": 86.524,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1725.608999999963,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 33.989000000000004,
      "layouts": 16,
      "layoutDurationMs": 3.888,
      "taskDurationMs": 633.17,
      "heapDeltaBytes": -10237232,
      "heapUsedBytes": 48724632,
      "domNodes": 63,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 85.57900000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 915.9250000000156,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 26.285999999999998,
      "layouts": 5,
      "layoutDurationMs": 11.66,
      "taskDurationMs": 680.2520000000001,
      "heapDeltaBytes": 3875152,
      "heapUsedBytes": 80301992,
      "domNodes": 13833,
      "jsHeapTotalBytes": 12582912,
      "scriptDurationMs": 24.846999999999994,
      "eventListeners": 2533,
      "totalBlockingTimeMs": 143,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8120.127999999966,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 50.569,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3430.117,
      "heapDeltaBytes": -16601832,
      "heapUsedBytes": 68232244,
      "domNodes": -264,
      "jsHeapTotalBytes": 7643136,
      "scriptDurationMs": 1182.65,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8159.153999999944,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 50.437000000000005,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3421.29,
      "heapDeltaBytes": -17038580,
      "heapUsedBytes": 67984916,
      "domNodes": -265,
      "jsHeapTotalBytes": 5283840,
      "scriptDurationMs": 1184.496,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333338,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 10693.097000000023,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 10679.300000000001,
      "heapDeltaBytes": -47461532,
      "heapUsedBytes": 170303756,
      "domNodes": -3300,
      "jsHeapTotalBytes": 6815744,
      "scriptDurationMs": 551.2479999999999,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 10788.036000000033,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 10776.893000000002,
      "heapDeltaBytes": -20078792,
      "heapUsedBytes": 168540788,
      "domNodes": -3300,
      "jsHeapTotalBytes": 11796480,
      "scriptDurationMs": 532.0780000000001,
      "eventListeners": -16466,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14001.764999999978,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 15.519000000000005,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13982.553000000002,
      "heapDeltaBytes": -54070604,
      "heapUsedBytes": 157665384,
      "domNodes": -3300,
      "jsHeapTotalBytes": 4194304,
      "scriptDurationMs": 840.1379999999999,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 13934.680999999955,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 15.825000000000006,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13916.146999999999,
      "heapDeltaBytes": -2038148,
      "heapUsedBytes": 180840564,
      "domNodes": -3303,
      "jsHeapTotalBytes": 20594688,
      "scriptDurationMs": 823.221,
      "eventListeners": -16472,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 498.11399999998685,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 26.443999999999996,
      "layouts": 5,
      "layoutDurationMs": 1.435,
      "taskDurationMs": 158.924,
      "heapDeltaBytes": -1587324,
      "heapUsedBytes": 51420896,
      "domNodes": -120,
      "jsHeapTotalBytes": -659456,
      "scriptDurationMs": 18.104999999999997,
      "eventListeners": -134,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 455.8469999999488,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 22.352,
      "layouts": 5,
      "layoutDurationMs": 1.223,
      "taskDurationMs": 106.14999999999999,
      "heapDeltaBytes": 5161144,
      "heapUsedBytes": 64987632,
      "domNodes": 159,
      "jsHeapTotalBytes": 2883584,
      "scriptDurationMs": 15.385000000000002,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000728
    }
  ]
}

coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 20, 2026
@codecov

codecov Bot commented Jun 20, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 86.66667% with 2 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/main.ts 0.00% 2 Missing ⚠️
@@            Coverage Diff             @@
##             main   #13054      +/-   ##
==========================================
- Coverage   76.52%   76.49%   -0.04%     
==========================================
  Files        1620     1620              
  Lines      106307   105857     -450     
  Branches    34108    33993     -115     
==========================================
- Hits        81355    80977     -378     
+ Misses      24106    24043      -63     
+ Partials      846      837       -9     
Flag Coverage Δ
unit 64.38% <86.66%> (+0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/config/comfyApi.ts 90.00% <ø> (-1.67%) ⬇️
src/config/firebase.ts 100.00% <100.00%> (+25.00%) ⬆️
src/platform/remoteConfig/refreshRemoteConfig.ts 76.27% <100.00%> (+3.19%) ⬆️
src/main.ts 62.96% <0.00%> (-1.95%) ⬇️

... and 22 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@bigcat88 bigcat88 force-pushed the feat/ephemeral-env-features branch from b2a6f3c to 9540f5a Compare June 20, 2026 19:41
@dosubot dosubot Bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:L This PR changes 100-499 lines, ignoring generated files. labels Jun 20, 2026
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 20, 2026
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 20, 2026
Comment thread src/config/firebase.ts Outdated
Comment thread src/main.ts Outdated
Comment thread src/platform/remoteConfig/refreshRemoteConfig.ts Outdated
Comment thread src/config/comfyApi.ts Outdated
Comment thread src/config/comfyApi.ts Outdated
Comment thread src/platform/remoteConfig/refreshRemoteConfig.ts Outdated
Comment thread src/config/firebase.test.ts Outdated
Comment thread src/platform/remoteConfig/refreshRemoteConfig.test.ts
Comment thread src/config/firebase.test.ts Outdated
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 22, 2026
@bigcat88

Copy link
Copy Markdown
Contributor Author

@CodeJuggernaut thank you, this was a really thorough review and two of these were genuine bugs, so I appreciate the care. It is all addressed in the latest commits.

CodeJuggernaut commented Jun 22, 2026

Copy link
Copy Markdown
Collaborator

You're welcome. I re-checked the latest commits, and both bug fixes are spot on, so I'm approving this PR.

CodeJuggernaut
CodeJuggernaut previously approved these changes Jun 22, 2026

@DrJKL DrJKL left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inline review comments.

Comment thread src/main.ts
Comment thread src/main.ts Outdated
Comment thread src/config/firebase.ts Outdated
Comment thread src/config/firebase.ts Outdated
Comment thread src/config/comfyApi.test.ts
Comment thread src/platform/remoteConfig/refreshRemoteConfig.ts
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 23, 2026
@bigcat88 bigcat88 removed their assignment Jun 23, 2026
@bigcat88 bigcat88 force-pushed the feat/ephemeral-env-features branch from 184b099 to a66f9af Compare June 24, 2026 08:29
@github-actions

github-actions Bot commented Jun 24, 2026

Copy link
Copy Markdown

✅ All contributors have signed the CLA. Thank you! This PR is ready to be merged.
Posted by the CLA Assistant Lite bot.

@bigcat88

Copy link
Copy Markdown
Contributor Author

I have read and agree to the Contributor License Agreement

comfy-legal added a commit to Comfy-Org/comfy-cla that referenced this pull request Jun 24, 2026

@christian-byrne christian-byrne left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems fine but can we just make it a pass through in this case? That is, move the config values to the given backends and send them normally rather than inferring the config set from the single api base argument? I.e., have local also send the full /features payload with all the config values. Or am I missing something?

Read the api and platform base from /features (remoteConfig) for all builds, and pick the dev Firebase project when the api base is staging-tier, so a prod bundle can talk to a staging or preview backend without a rebuild.
@bigcat88 bigcat88 force-pushed the feat/ephemeral-env-features branch from e2f116b to dd80f74 Compare June 25, 2026 18:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants