2022-08-09 10:44:30 +02:00
|
|
|
import adapter from "@sveltejs/adapter-auto"
|
|
|
|
import preprocess from "svelte-preprocess"
|
2022-08-09 10:21:38 +02:00
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2022-08-09 10:44:30 +02:00
|
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
|
|
// for more information about preprocessors
|
|
|
|
preprocess: [
|
|
|
|
preprocess({
|
|
|
|
postcss: true,
|
|
|
|
}),
|
|
|
|
],
|
2022-08-09 10:21:38 +02:00
|
|
|
|
2022-08-09 10:44:30 +02:00
|
|
|
kit: {
|
|
|
|
adapter: adapter(),
|
|
|
|
},
|
|
|
|
}
|
2022-08-09 10:21:38 +02:00
|
|
|
|
2022-08-09 10:44:30 +02:00
|
|
|
export default config
|