aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: 87559d462fd58a46ebe4e3b6eaba772206473014 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import adapter from 'svelte-adapter-bun';
import { vitePreprocess } from '@sveltejs/kit/vite';

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

export default config;