File size: 322 Bytes
5fd8183
 
 
 
 
 
 
 
 
 
3ea9c87
5fd8183
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import adapter from '@sveltejs/adapter-static';

/** @type {import('@sveltejs/kit').Config} */
const config = {
	kit: {
		adapter: adapter(),

		// hydrate the <div id="svelte"> element in src/app.html
		target: '#svelte',
		paths: {
			base: '/staticspaceiframe/pngwn/static-test/build'
		}
	}
};

export default config;