From b9d575c18a3a2d0ae715f2fba6dd18cfe37f3956 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Fri, 19 Dec 2025 16:47:44 -0500 Subject: [PATCH] simple - test comparison --- app.config.ts | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/app.config.ts b/app.config.ts index 334fdd0..44f2736 100644 --- a/app.config.ts +++ b/app.config.ts @@ -3,35 +3,7 @@ import tailwindcss from "@tailwindcss/vite"; export default defineConfig({ vite: { - plugins: [tailwindcss()], - build: { - rollupOptions: { - output: { - manualChunks: (id) => { - // Split highlight.js into its own chunk - if (id.includes("highlight.js")) { - return "highlight"; - } - // Split other large vendor libraries - if (id.includes("node_modules")) { - // Keep all solid-related packages together to avoid circular deps - if ( - id.includes("@solidjs") || - id.includes("solid-js") || - id.includes("seroval") - ) { - return "solid"; - } - if (id.includes("@trpc")) { - return "trpc"; - } - // Don't create a generic vendor chunk - let Vite handle it - // to avoid circular dependencies with solid - } - } - } - } - } + plugins: [tailwindcss()] }, server: { preset: "vercel"