22 lines
530 B
JavaScript
22 lines
530 B
JavaScript
import adapter from '@sveltejs/adapter-auto';
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
import {markdown} from 'svelte-preprocess-markdown';
|
|
import preprocess from 'svelte-preprocess';
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
// for more information about preprocessors
|
|
preprocess: [vitePreprocess(), markdown(),preprocess({
|
|
sass: true,
|
|
typescript: true,
|
|
})],
|
|
|
|
kit: {
|
|
adapter: adapter()
|
|
}
|
|
};
|
|
|
|
export default config;
|