-
Notifications
You must be signed in to change notification settings - Fork 81
/
svelte.config.js
41 lines (36 loc) · 1021 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
40
41
import adapter from '@sveltejs/adapter-static'
import { mdsvex } from 'mdsvex'
import rehypeAutolinkHeadings from 'rehype-autolink-headings'
import rehypeSlug from 'rehype-slug'
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Ensures both .svelte and .md files are treated as components (can be imported and used anywhere, or used as pages)
extensions: ['.svelte', '.md'],
preprocess: [
mdsvex({
// The default mdsvex extension is .svx; this overrides that.
extensions: ['.md'],
// Adds IDs to headings, and anchor links to those IDs. Note: must stay in this order to work.
rehypePlugins: [
rehypeSlug,
rehypeAutolinkHeadings,
],
}),
],
kit: {
adapter: adapter(),
prerender: {
entries: [
'*',
'/api/posts/page/*',
'/blog/category/*/page/',
'/blog/category/*/page/*',
'/blog/category/page/',
'/blog/category/page/*',
'/blog/page/',
'/blog/page/*',
]
}
}
};
export default config;