import adapter from '@sveltejs/adapter-auto';

/** @type {import('@sveltejs/kit').Config} */
const config = {
	kit: {
		// adapter-auto supports various environments and will automatically choose the right adapter
		adapter: adapter()
	}
};

export default config;