2024-04-20 19:23:32 +10:00
|
|
|
import adapter from "@sveltejs/adapter-cloudflare";
|
2024-04-19 16:48:42 +10:00
|
|
|
import sveltePreprocess from "svelte-preprocess";
|
2024-01-21 14:54:48 +10:00
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2024-04-19 14:20:02 +10:00
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
|
|
// for more information about preprocessors
|
2024-04-19 16:48:42 +10:00
|
|
|
preprocess: sveltePreprocess(),
|
2024-01-21 14:54:48 +10:00
|
|
|
|
2024-04-19 14:20:02 +10:00
|
|
|
kit: {
|
|
|
|
// 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.
|
2024-04-20 19:23:32 +10:00
|
|
|
adapter: adapter({
|
|
|
|
routes: {
|
2024-04-20 21:11:38 +10:00
|
|
|
include: ["/*"],
|
|
|
|
},
|
2024-04-20 19:23:32 +10:00
|
|
|
}),
|
2024-04-19 14:20:02 +10:00
|
|
|
},
|
2024-01-21 14:54:48 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|