-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathsvelte.config.js
More file actions
48 lines (43 loc) · 1.21 KB
/
svelte.config.js
File metadata and controls
48 lines (43 loc) · 1.21 KB
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
import adapter from '@sveltejs/adapter-static';
import vercel from '@sveltejs/adapter-vercel';
import { sveltePreprocess } 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: [
sveltePreprocess({
postcss: true,
}),
],
kit: {
alias: {
$lib: 'src/lib',
'$lib/*': 'src/lib/*',
$types: 'src/lib/types',
'$types/*': 'src/lib/types/*',
'$components/*': 'src/components/*',
'$fixtures/*': 'src/fixtures/*',
},
adapter: ci
? vercel()
: adapter({
fallback: 'index.html',
pages: buildPath,
assets: buildPath,
}),
prerender: {
entries: [],
},
csp: {
mode: 'auto',
directives: { 'script-src': ['strict-dynamic'] },
},
},
};