2023-02-03 19:55:33 +02:00
|
|
|
import adapter from "@sveltejs/adapter-node";
|
|
|
|
import { vitePreprocess } from "@sveltejs/kit/vite";
|
2022-02-28 19:12:33 +01:00
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2023-01-25 19:11:11 +02:00
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
2022-06-17 21:52:07 +03:00
|
|
|
// for more information about preprocessors
|
2023-01-25 19:11:11 +02:00
|
|
|
preprocess: vitePreprocess(),
|
2022-02-28 19:12:33 +01:00
|
|
|
|
2022-06-17 21:52:07 +03:00
|
|
|
kit: {
|
2023-01-06 10:01:05 +02:00
|
|
|
adapter: adapter()
|
2022-06-17 21:52:07 +03:00
|
|
|
}
|
2022-02-28 19:12:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|