From 1b155a2b01f70baaa3ec0eb42e98fc02f78412e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= Date: Sat, 25 Jan 2025 10:05:33 +0000 Subject: [PATCH] disable chunking --- packages/vite-plugins/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vite-plugins/src/index.ts b/packages/vite-plugins/src/index.ts index a474fb46147..a5ce42f3c08 100644 --- a/packages/vite-plugins/src/index.ts +++ b/packages/vite-plugins/src/index.ts @@ -1,4 +1,4 @@ import { JBundleAnalysis, JBundleChunking, JBundleSizeReport } from './bundle.ts'; -export const JBundle = [JBundleAnalysis(), JBundleChunking(), JBundleSizeReport()]; +export const JBundle = [JBundleAnalysis(), JBundleSizeReport()]; export { JMonorepo } from './transform.ts';