summaryrefslogtreecommitdiffstats
path: root/svelte.config.js
blob: ced8939dcc6d8635d976b1c2dba3c1115442e284 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';

/** @type {import('@sveltejs/kit').Config} */
const config = {
    preprocess: vitePreprocess(),
    kit: {
        adapter: adapter({
            pages: 'dist',
            assets: 'dist'
        })
    }
};

export default config;