summaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: a103e15db7d62ffe63b1dd152f282a2b768347aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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: "build",
      assets: "build",
      fallback: "huh.html",
      preprocess: false,
      strict: true,
    })
  }
};

export default config;