2021-05-14 21:51:14 +02:00
|
|
|
import preprocess from 'svelte-preprocess';
|
|
|
|
import adapter from '@sveltejs/adapter-node';
|
2022-02-10 15:47:44 +01:00
|
|
|
|
|
|
|
const config = {
|
|
|
|
preprocess: preprocess(),
|
2021-05-14 21:51:14 +02:00
|
|
|
kit: {
|
2022-02-10 15:47:44 +01:00
|
|
|
adapter: adapter(),
|
2021-05-14 21:51:14 +02:00
|
|
|
prerender: {
|
|
|
|
enabled: false
|
|
|
|
},
|
2022-02-10 15:47:44 +01:00
|
|
|
floc: true,
|
2021-05-14 21:51:14 +02:00
|
|
|
vite: {
|
2022-02-10 15:47:44 +01:00
|
|
|
optimizeDeps: {
|
|
|
|
exclude: ['svelte-kit-cookie-session']
|
2021-05-14 21:51:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2022-02-10 15:47:44 +01:00
|
|
|
|
|
|
|
export default config;
|