-
Notifications
You must be signed in to change notification settings - Fork 0
/
svelte.config.js
43 lines (37 loc) · 1.08 KB
/
svelte.config.js
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
29
30
31
32
33
34
35
36
37
38
39
40
41
//import adapter from '@sveltejs/adapter-auto';
//import adapter from '@sveltejs/adapter-netlify';
//import adapter from '@sveltejs/adapter-node';
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/kit/vite';
export default {
preprocess: [vitePreprocess()],
kit: {
//SSG Adapter
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'build',
assets: 'build',
fallback: undefined,
precompress: false,
strict: false
})
/*
// Node Server Adapter
adapter: adapter({
out: 'build-node',
precompress: false
})
// Netlify Adapter
adapter: adapter({
// if true, will create a Netlify Edge Function rather
// than using standard Node-based functions
edge: false,
// if true, will split your app into multiple functions
// instead of creating a single one for the entire app.
// if `edge` is true, this option cannot be used
split: false
})
*/
}
};