Files
starter-site-chirho/svelte.config.js
LoveJesus 167b3a7375 feat: Add SvelteKit starter template for customer sites
- Complete SvelteKit 2 + Svelte 5 template
- Tailwind CSS styling with primary color customization
- Pages: Home, About, Services, Contact
- Contact form with D1 database backend
- Placeholder system for site-specific values
- Cloudflare adapter configuration

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-12 04:56:21 -05:00

22 lines
406 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: ['<all>']
}
})
}
};
export default config;
// JESUS CHRIST IS LORD