-
Notifications
You must be signed in to change notification settings - Fork 3
/
svelte.config.js
47 lines (44 loc) · 1.2 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
// import adapter from '@sveltejs/adapter-static';
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import { mdsvex } from 'mdsvex';
import rehypeExternalLinks from 'rehype-external-links';
import rehypeSlug from 'rehype-slug';
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
const extensions = ['.svelte', '.md'];
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
prerender: {
handleHttpError: 'warn',
entries: ['*']
}
},
preprocess: [
vitePreprocess(),
mdsvex({
extensions: extensions,
rehypePlugins: [
rehypeExternalLinks, // Adds 'target' and 'rel' to external links
rehypeSlug, // Adds 'id' attributes to Headings (h1,h2,etc)
[
rehypeAutolinkHeadings,
{
// Adds hyperlinks to the headings, requires rehypeSlug
behavior: 'prepend',
properties: { className: ['heading-link'], title: 'Permalink', ariaHidden: 'true' },
content: {
type: 'element',
tagName: 'span',
properties: {},
children: [{ type: 'text', value: '#' }]
}
}
]
]
})
],
extensions: extensions
};
export default config;