coredoesdev/svelte.config.js

30 lines
857 B
JavaScript
Raw Normal View History

2023-07-01 19:47:02 +00:00
import adapter from '@sveltejs/adapter-static';
2024-02-06 19:46:35 +00:00
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
2023-07-01 00:38:42 +00:00
import {mdsvex} from "mdsvex";
2024-02-06 19:46:35 +00:00
import highlighter from "./src/lib/highlighter.js";
2023-06-01 01:09:44 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
2023-07-01 00:38:42 +00:00
preprocess: [
vitePreprocess(),
mdsvex({
highlight: {
highlighter
}
})
],
extensions: ['.svelte', '.svx'],
2023-06-01 01:09:44 +00:00
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter(),
}
};
export default config;