From 277f667744aa67b68ddc767d002c520d0ebdfd83 Mon Sep 17 00:00:00 2001 From: Crimson Date: Thu, 21 May 2026 19:31:58 +0500 Subject: [PATCH] =?UTF-8?q?frontend:=20=D1=83=D0=B1=D1=80=D0=B0=D0=BD=20?= =?UTF-8?q?=D1=80=D0=B8=D1=81=D0=BA=D0=BE=D0=B2=D0=B0=D0=BD=D0=BD=D1=8B?= =?UTF-8?q?=D0=B9=20manual=20chunking=20vue=20runtime?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/frontend/vite.config.ts | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/apps/frontend/vite.config.ts b/apps/frontend/vite.config.ts index 6c865b2..939fd90 100644 --- a/apps/frontend/vite.config.ts +++ b/apps/frontend/vite.config.ts @@ -120,31 +120,6 @@ export default defineConfig((): UserConfig => { return "charts"; } - if ( - normalizedId.includes("element-plus") || - normalizedId.includes("@element-plus") || - normalizedId.includes("@popperjs") - ) { - return "element-plus"; - } - - if ( - normalizedId.includes("/vue/") || - normalizedId.includes("vue-router") || - normalizedId.includes("pinia") || - normalizedId.includes("vue-i18n") || - normalizedId.includes("@vueuse") - ) { - return "vue-core"; - } - - if ( - normalizedId.includes("qrcode.vue") || - normalizedId.includes("vuedraggable") - ) { - return "ui-extra"; - } - return "vendor"; }, sanitizeFileName(name: string): string {