2023-07-10 18:37:41 +02:00
|
|
|
import adapter from "@sveltejs/adapter-node";
|
2023-07-10 17:44:06 +02:00
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
|
|
// for more information about preprocessors
|
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
2023-07-10 18:37:41 +02:00
|
|
|
adapter: adapter({
|
|
|
|
precompress: false,
|
|
|
|
}),
|
|
|
|
},
|
2023-07-10 17:44:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|