2022-04-22 14:20:51 -04:00
|
|
|
import adapter from '@sveltejs/adapter-auto';
|
|
|
|
import preprocess from 'svelte-preprocess';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
|
|
// for more information about preprocessors
|
|
|
|
preprocess: preprocess(),
|
|
|
|
|
|
|
|
kit: {
|
2022-11-12 20:58:29 -05:00
|
|
|
adapter: adapter()
|
2022-04-22 14:20:51 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|