File size: 687 Bytes
0005a21
 
f09e28b
64d1262
 
f09e28b
 
64d1262
 
0005a21
 
64d1262
 
0005a21
64d1262
 
f09e28b
ba26a7d
f09e28b
 
ba26a7d
 
f09e28b
64d1262
 
 
ba26a7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { mdsvex } from 'mdsvex';
import mdsvexConfig from './mdsvex.config.js';
import adapter from '@sveltejs/adapter-static';
import preprocess from 'svelte-preprocess';

const dev = process.env.NODE_ENV === 'development';

/** @type {import('@sveltejs/kit').Config} */
const config = {
	extensions: ['.svelte', ...mdsvexConfig.extensions],

	// Consult https://github.com/sveltejs/svelte-preprocess
	// for more information about preprocessors
	preprocess: [preprocess(), mdsvex(mdsvexConfig)],

	kit: {
		paths: {
			base: dev ? '' : '/staticspaceiframe/huggingface/diffuse-the-rest/build'
		},
		adapter: adapter(),
		prerender: {
			default: true
		}
	}
};

export default config;