-
Notifications
You must be signed in to change notification settings - Fork 71
/
svelte.config.js
39 lines (35 loc) · 995 Bytes
/
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
import adapter from '@sveltejs/adapter-static';
import vercel from '@sveltejs/adapter-vercel';
import preprocess from 'svelte-preprocess';
// Workaround until SvelteKit uses Vite 2.3.8 (and it's confirmed to fix the Tailwind JIT problem)
const mode = process.env.NODE_ENV;
const dev = mode === 'development';
process.env.TAILWIND_MODE = dev ? 'watch' : 'build';
const ci = !!process.env.VERCEL;
const buildPath = process.env.BUILD_PATH || 'build';
/** @type {import('@sveltejs/kit').Config} */
export default {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
preprocess({
postcss: true,
}),
],
kit: {
adapter: ci
? vercel()
: adapter({
fallback: 'index.html',
pages: buildPath,
assets: buildPath,
}),
prerender: {
entries: [],
},
csp: {
mode: 'auto',
directives: { 'script-src': ['strict-dynamic'] },
},
},
};