got rid of adapter specification

This commit is contained in:
Spencer Flagg 2024-01-24 14:52:23 +01:00
parent 2c45f6f979
commit 3ff0ec1f82

View file

@ -11,11 +11,12 @@ const config = {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. // 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. // 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. // See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter({ // adapter: adapter({
out: 'build', // out: 'build',
precompress: false, // precompress: false,
envPrefix: '' // envPrefix: ''
}) // })
adapter: adapter()
} }
}; };