2022-12-27 23:39:58 +01:00
|
|
|
import preprocess from "svelte-preprocess";
|
2023-02-23 17:11:57 +01:00
|
|
|
//import adapter from '@sveltejs/adapter-auto';
|
|
|
|
import adapter from '@sveltejs/adapter-node';
|
2022-12-27 18:26:05 +01: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
|
2022-12-27 23:39:58 +01:00
|
|
|
preprocess: [vitePreprocess(), preprocess({
|
|
|
|
scss: {
|
|
|
|
"prependData": "@use \"src/variables.scss\" as *;"
|
|
|
|
}
|
|
|
|
})],
|
2022-12-27 18:26:05 +01:00
|
|
|
|
|
|
|
kit: {
|
|
|
|
adapter: adapter()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|