From 3ff0ec1f825b1e7e982781afc34fadebbfaeb955 Mon Sep 17 00:00:00 2001 From: Spencer Flagg Date: Wed, 24 Jan 2024 14:52:23 +0100 Subject: [PATCH] got rid of adapter specification --- svelte.config.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/svelte.config.js b/svelte.config.js index 6934df3..2bb22db 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -11,11 +11,12 @@ const config = { // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. // If your environment is not supported or you settled on a specific environment, switch out the adapter. // See https://kit.svelte.dev/docs/adapters for more information about adapters. - adapter: adapter({ - out: 'build', - precompress: false, - envPrefix: '' - }) + // adapter: adapter({ + // out: 'build', + // precompress: false, + // envPrefix: '' + // }) + adapter: adapter() } };