From e00ceaa0ab4dc08a0babef5587826b4edad8b6b4 Mon Sep 17 00:00:00 2001 From: Qingyu Wang <40660121+colinaaa@users.noreply.github.com> Date: Fri, 28 Nov 2025 16:20:24 +0800 Subject: [PATCH] chore: only enable bundle analysis for Lynx --- examples/react/lynx.config.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/react/lynx.config.js b/examples/react/lynx.config.js index 324419065b..ed483a4677 100644 --- a/examples/react/lynx.config.js +++ b/examples/react/lynx.config.js @@ -14,11 +14,12 @@ export default defineConfig({ }, }), ], - performance: { - profile: enableBundleAnalysis, - }, environments: { web: {}, - lynx: {}, + lynx: { + performance: { + profile: enableBundleAnalysis, + }, + }, }, });