From 3c3d779d3dfb65e17a6ae8047109150105e7322d Mon Sep 17 00:00:00 2001 From: Nikita Karamov Date: Mon, 28 Aug 2023 00:03:57 +0200 Subject: [PATCH] Disable function splitting --- astro.config.mjs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 110c2bf..d1b4352 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -13,9 +13,6 @@ if (process.env.VERCEL) { configMixin = { output: "server", adapter: vercel(), - build: { - split: true, - }, }; } else if (process.env.CF_PAGES) { console.info("Using Cloudflare adapter..."); @@ -28,9 +25,6 @@ if (process.env.VERCEL) { configMixin = { output: "server", adapter: netlify(), - build: { - split: true, - }, }; } else if (process.argv.includes("--s2f-use-deno")) { console.info("Using Deno adapter...");