mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-09 17:42:02 +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;
|