Switch on experimental async for sveltekit

This commit is contained in:
Dominic Ferrando
2026-07-04 16:49:26 -04:00
parent 65943ce625
commit 376af8ea45
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -13,6 +13,12 @@ const config = {
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter(),
},
compilerOptions: {
experimental: {
async: true
}
}
};
export default config;