summaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: e7f0869be48b97d2c4a9feaf8fedb6033a632a97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';

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

export default config;