From 91473c83eb8a77c5db70b928a3f321d6de55832c Mon Sep 17 00:00:00 2001 From: Arsh <69170106+lilnasy@users.noreply.github.com> Date: Sun, 24 Sep 2023 01:51:58 +0530 Subject: [PATCH] noExternal does not need to be manually set at all --- packages/integrations/deno/src/index.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/integrations/deno/src/index.ts b/packages/integrations/deno/src/index.ts index c3e231853549..9740e30273dc 100644 --- a/packages/integrations/deno/src/index.ts +++ b/packages/integrations/deno/src/index.ts @@ -132,11 +132,6 @@ export default function createIntegration(args?: Options): AstroIntegration { } }, - 'astro:config:setup' ({ updateConfig }) { - updateConfig({ - vite: { ssr: { noExternal: COMPATIBLE_NODE_MODULES } } - }) - }, 'astro:build:setup': ({ vite, target }) => { if (target === 'server') { _vite = vite;