try setting split to true for netlify deployments

This commit is contained in:
Silas 2024-06-03 23:52:06 -04:00
parent ddda98996b
commit e0c05a7768
Failed to generate hash of commit
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ 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()
adapter: adapter({
split: true
})
},
extensions: ['.svelte', '.md']
};