-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvelte.config.js
43 lines (39 loc) · 1.06 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
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import { mdsvex, escapeSvelte } from 'mdsvex';
import { getHighlighter } from 'shiki';
import readingTime from "mdsvex-reading-time";
const mdsverConfig = {
extensions: ['md'],
highlight: {
highlighter: async (code, lang = 'text') => {
const highlighter = await getHighlighter({
themes: ['poimandres'],
langs: ['javascript', 'typescript']
})
await highlighter.loadLanguage('javascript', 'typescript', 'html')
const html = escapeSvelte(highlighter.codeToHtml(code, { lang, theme: 'poimandres' }))
return `{@html \`${html}\` }`
}
},
layout: {
_: './src/mdsvex.svelte',
},
remarkPlugins: [
readingTime
],
};
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: ['.svelte', '.md'],
preprocess: [vitePreprocess(), mdsvex(mdsverConfig)],
kit: {
adapter: adapter({
strict: false
}),
paths: {
base: process.argv.includes('dev') ? '' : process.env.BASE_PATH,
}
}
};
export default config;