aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: 301e785eb88c65d0ddcd7e812dc50ca4a243d60d (plain)
1
2
3
4
5
6
7
8
9
10
import adapter from '@sveltejs/adapter-auto';

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

export default config;