mirror of
https://github.com/JonasunderscoreJones/blog.jonasjones.dev.git
synced 2025-10-23 03:19:19 +02:00
12 lines
315 B
JavaScript
12 lines
315 B
JavaScript
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
|
|
import adapter from '@sveltejs/adapter-cloudflare';
|
|
|
|
export default {
|
|
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter(),
|
|
}
|
|
}
|