The repository for the Tophhie Cloud API web toolkit.
at main 13 lines 365 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 // Consult https://svelte.dev/docs/kit/integrations 7 // for more information about preprocessors 8 preprocess: vitePreprocess(), 9 10 kit: { adapter: adapter() } 11}; 12 13export default config;