| 1 | import adapter from "@sveltejs/adapter-cloudflare"; |
| 2 | |
| 3 | /** @type {import('@sveltejs/kit').Config} */ |
| 4 | const config = { |
| 5 | kit: { |
| 6 | // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. |
| 7 | // If your environment is not supported, or you settled on a specific environment, switch out the adapter. |
| 8 | // See https://svelte.dev/docs/kit/adapters for more information about adapters. |
| 9 | adapter: adapter(), |
| 10 | }, |
| 11 | }; |
| 12 | |
| 13 | export default config; |