mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-16 21:23:00 +05:30
a5010e2caf
Signed-off-by: Alexander J <odyssey346@disroot.org>
15 lines
293 B
JavaScript
15 lines
293 B
JavaScript
import { defineMDSveXConfig as defineConfig } from "mdsvex";
|
|
|
|
const config = defineConfig({
|
|
extensions: [".svelte.md", ".md", ".svx"],
|
|
layout: "./src/lib/content.svelte",
|
|
|
|
smartypants: {
|
|
dashes: "oldschool",
|
|
},
|
|
remarkPlugins: [],
|
|
rehypePlugins: [],
|
|
});
|
|
|
|
export default config;
|