mirror of
https://github.com/System-End/daydream-phoenix.git
synced 2026-04-19 20:55:11 +00:00
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
import adapter from '@sveltejs/adapter-node';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
import { mdsvex, escapeSvelte } from 'mdsvex';
|
|
import { createHighlighter } from 'shiki';
|
|
|
|
// shiki config for the guide
|
|
const shikiTheme = "min-light"
|
|
const shikiHighlighter = await createHighlighter({
|
|
themes: [shikiTheme],
|
|
langs: ["javascript", "bash"],
|
|
})
|
|
|
|
/** @type {import('mdsvex').MdsvexOptions} */
|
|
const mdsvexOptions = {
|
|
highlight: {
|
|
highlighter: async (code, lang = 'text') => {
|
|
const html = escapeSvelte(shikiHighlighter.codeToHtml(code, { lang, theme: shikiTheme }));
|
|
return `{@html \`${html}\` }`;
|
|
}
|
|
},
|
|
}
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
|
// for more information about preprocessors
|
|
preprocess: [vitePreprocess(), mdsvex(mdsvexOptions)],
|
|
|
|
extensions: ['.svelte', '.svx'],
|
|
|
|
kit: {
|
|
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
|
|
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
|
|
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
|
|
adapter: adapter()
|
|
}
|
|
};
|
|
|
|
export default config;
|
|
|
|
// mama mia mama mia mama mia let me go
|