-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvelte.config.js
78 lines (76 loc) · 1.47 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import adapter from '@sveltejs/adapter-auto'
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
alias: {},
appDir: '_app',
csp: {
directives: {
'script-src': ['self'],
},
mode: 'auto',
reportOnly: {
'script-src': ['self'],
'report-uri': ['/'],
},
},
csrf: {
checkOrigin: true,
},
embedded: false,
env: {
dir: '.',
privatePrefix: 'PRIV_',
publicPrefix: 'PUB_',
},
files: {
appTemplate: 'index.html',
assets: 'assets',
errorTemplate: 'error.html',
hooks: {
client: 'hooks.client.ts',
server: 'hooks.client.ts',
universal: 'hooks.client.ts',
},
lib: 'lib',
params: 'params',
routes: 'routes',
serviceWorker: 'service-worker.ts',
},
inlineStyleThreshold: 0,
moduleExtensions: ['.ts'],
outDir: '.svelte-kit',
output: {
preloadStrategy: 'modulepreload',
},
paths: {
assets: '',
base: '',
relative: true,
},
prerender: {
concurrency: 1,
crawl: true,
entries: ['*'],
handleHttpError: 'fail',
handleMissingId: 'fail',
handleEntryGeneratorMismatch: 'fail',
origin: 'http://sveltekit-prerender',
},
serviceWorker: {
files: (filename) => !filename.startsWith('.'),
register: true,
},
typescript: {
config: (config) => config,
},
version: {
name: undefined,
pollInterval: 0,
},
},
}
export default config