From 221975ccb6d6a32129f8ce1f9bfb1f298a654f36 Mon Sep 17 00:00:00 2001 From: feige996 <1020102647@qq.com> Date: Thu, 3 Jul 2025 20:01:39 +0800 Subject: [PATCH] =?UTF-8?q?feat(manifest):=20=E6=B7=BB=E5=8A=A0=E5=88=86?= =?UTF-8?q?=E5=8C=85=E4=BC=98=E5=8C=96=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在 manifest 配置中增加分包优化选项以提升小程序性能 --- manifest.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/manifest.config.ts b/manifest.config.ts index 503f85f..ee3239d 100644 --- a/manifest.config.ts +++ b/manifest.config.ts @@ -124,6 +124,9 @@ export default defineManifestConfig({ es6: true, minified: true, }, + optimization: { + subPackages: true, + }, usingComponents: true, // __usePrivacyCheck__: true, },