mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-10 01:52:03 +05:30
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
|
import { defineMDSveXConfig as defineConfig } from "mdsvex";
|
||
|
|
||
|
const config = defineConfig({
|
||
|
extensions: [".svelte.md", ".md", ".svx"],
|
||
|
|
||
|
smartypants: {
|
||
|
dashes: "oldschool",
|
||
|
},
|
||
|
|
||
|
remarkPlugins: [],
|
||
|
rehypePlugins: [],
|
||
|
});
|
||
|
|
||
|
export default config;
|