extremely claude-assisted go game based on atproto! working on cleaning up and giving a more unique design, still has a bit of a slop vibe to it.
at feature/study-tab 18 lines 337 B view raw
1import adapter from '@sveltejs/adapter-cloudflare'; 2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 4/** @type {import('@sveltejs/kit').Config} */ 5const config = { 6 preprocess: vitePreprocess(), 7 8 kit: { 9 adapter: adapter({ 10 routes: { 11 include: ['/*'], 12 exclude: ['<all>'] 13 } 14 }) 15 } 16}; 17 18export default config;