2022-07-23 20:52:23 +00:00
|
|
|
import adapter from '@sveltejs/adapter-node';
|
|
|
|
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-07-23 22:04:56 +00:00
|
|
|
adapter: adapter(),
|
2022-07-23 20:52:23 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|