2022-05-21 07:23:55 +00:00
|
|
|
import preprocess from 'svelte-preprocess';
|
|
|
|
import adapter from '@sveltejs/adapter-node';
|
2022-09-08 15:30:49 +00:00
|
|
|
|
2022-05-21 07:23:55 +00:00
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
preprocess: preprocess(),
|
|
|
|
|
|
|
|
kit: {
|
2022-09-17 04:13:22 +00:00
|
|
|
adapter: adapter({ out: 'build' })
|
2022-07-16 04:18:17 +00:00
|
|
|
}
|
2022-05-21 07:23:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|