-
Notifications
You must be signed in to change notification settings - Fork 45
/
svelte.config.js
65 lines (61 loc) · 1.35 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
import preprocess from 'svelte-preprocess';
import adapter from '@sveltejs/adapter-netlify';
import { mdsvex } from 'mdsvex';
import remarkGithub from 'remark-github';
import remarkGfm from 'remark-gfm';
import remarkAbbr from 'remark-abbr';
import rehypeSlug from 'rehype-slug';
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
// import yaml from '@rollup/plugin-yaml' // didnt work at all
// mdsvex config
const mdsvexConfig = {
extensions: ['.svelte.md', '.md', '.svx'],
layout: {
_: './src/mdsvexlayout.svelte' // default mdsvex layout
},
remarkPlugins: [
[
remarkGfm,
{
// Use your own repository
repository: 'https://github.com/swyxio/swyxdotio'
}
],
[remarkGithub, { repository: 'https://github.com/swyxio/swyxdotio/' }],
remarkAbbr
],
rehypePlugins: [
rehypeSlug,
[
rehypeAutolinkHeadings,
{
behavior: 'wrap'
}
]
]
};
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: ['.svelte', '.html', '.svx', ...mdsvexConfig.extensions],
preprocess: [
mdsvex(mdsvexConfig),
preprocess({
postcss: true
})
],
kit: {
adapter: adapter({
split: false
})
// https://kit.svelte.dev/docs/configuration#csp
// csp: {
// directives: {
// 'script-src': ['self']
// },
// reportOnly: {
// 'script-src': ['self']
// }
// }
}
};
export default config;