aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: 6322225607de0039e2e7bf31a95b53341fa659b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import adapter from "@sveltejs/adapter-cloudflare";
import { vitePreprocess } from "@sveltejs/kit/vite";

/** @type {import('@sveltejs/kit').Config} */
const config = {
  preprocess: vitePreprocess(),
  kit: {
    adapter: adapter(),
  },
};

export default config;