aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: 1652cf6524fcaa48586690c9c90ec761fec339a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import adapter from '@sveltejs/adapter-static';

/** @type {import('@sveltejs/kit').Config} */
const config = {
	kit: {
		// hydrate the <div id="svelte"> element in src/app.html
    adapter: adapter({
      fallback: 'index.html'
    }),
		target: '#svelte'
	}
};

export default config;