-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsvelte.config.js
More file actions
51 lines (46 loc) · 1.06 KB
/
svelte.config.js
File metadata and controls
51 lines (46 loc) · 1.06 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
49
50
51
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import { escapeSvelte, mdsvex } from 'mdsvex';
import { createHighlighter } from 'shiki';
const dev = process.env.NODE_ENV === 'development';
const theme = 'github-dark';
const highlighter = await createHighlighter({
themes: [theme],
langs: ['shell']
});
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: {
...vitePreprocess(),
...mdsvex({
rehypePlugins: [],
remarkPlugins: [],
smartypants: true,
highlight: {
highlighter: async (code, lang = 'text') => {
const html = escapeSvelte(highlighter.codeToHtml(code, { lang, theme }));
return `{@html \`${html}\` }`;
}
},
extension: '.svx'
})
},
extensions: ['.svelte', '.svx', '.md'],
kit: {
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: 'index.html',
precompress: false,
strict: true
}),
paths: {
relative: true
},
prerender: {
handleHttpError: 'warn',
entries: ['*']
}
}
};
export default config;