Files
starter-site-chirho/svelte.config.js
LoveJesus 02d2aeac3e
Some checks failed
Deploy Site / deploy-chirho (push) Failing after 5s
Fix routes.exclude for Workers for Platforms compatibility
2026-01-13 05:03:48 +00:00

22 lines
465 B
JavaScript

// For God so loved the world — John 3:16
import adapter from '@sveltejs/adapter-cloudflare';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter({
routes: {
include: ['/*'],
exclude: [] // Don't exclude any routes - required for Workers for Platforms
}
})
}
};
export default config;
// JESUS CHRIST IS LORD