A fork of pds-dash for selfhosted.social
1import adapter from '@sveltejs/adapter-node';
2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
3
4/** @type {import('@sveltejs/kit').Config} */
5const config = {
6 // Consult https://svelte.dev/docs#compile-time-svelte-preprocess
7 // for more information about preprocessors
8 preprocess: vitePreprocess(),
9
10 kit: {
11 adapter: adapter()
12 }
13};
14
15export default config;