aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/svelte.config.js
blob: 7a41f1c54fea7d360463f260d1a7441f32963b94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import adapter from "@sveltejs/adapter-node";
import preprocess from "svelte-preprocess";

/** @type {import('@sveltejs/kit').Config} */
const config = {
    preprocess: [
        preprocess({
            postcss: true,
        }),
    ],
    kit: {
        adapter: adapter(),
        alias: {
            "$actions": "src/actions"
        },
        prerender: {
            enabled: false,
        }
    },
};

export default config;