2023-03-05 10:39:55 +00:00
|
|
|
import adapter from '@sveltejs/adapter-node';
|
2023-03-05 10:16:27 +00:00
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
2023-01-22 14:20:30 +00:00
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
kit: {
|
2023-03-05 10:39:55 +00:00
|
|
|
adapter: adapter()
|
2023-03-05 10:16:27 +00:00
|
|
|
},
|
|
|
|
preprocess: vitePreprocess()
|
2023-01-22 14:20:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|