2022-08-09 11:15:42 +02:00
|
|
|
import adapter from "@sveltejs/adapter-node"
|
2023-01-31 16:12:09 +01:00
|
|
|
import { vitePreprocess } from "@sveltejs/kit/vite"
|
2022-08-09 10:21:38 +02:00
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2023-01-31 16:26:37 +01:00
|
|
|
kit: {
|
|
|
|
adapter: adapter({
|
|
|
|
precompress: true,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
|
2023-01-31 16:12:09 +01:00
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
2022-08-09 10:44:30 +02:00
|
|
|
// for more information about preprocessors
|
2023-08-05 21:50:39 +02:00
|
|
|
preprocess: [vitePreprocess({})],
|
2022-08-09 10:44:30 +02:00
|
|
|
}
|
2022-08-09 10:21:38 +02:00
|
|
|
|
2022-08-09 10:44:30 +02:00
|
|
|
export default config
|