Fix CheckBoxList SVG icons + Move docs source

This commit is contained in:
venashial
2022-05-25 17:22:54 -07:00
parent 8da6572074
commit 4ffc90f963
21 changed files with 284 additions and 250 deletions

View File

@@ -1,5 +1,6 @@
import { defineMDSveXConfig as defineConfig } from 'mdsvex';
import examples from 'mdsvexamples';
import path from 'path';
const config = defineConfig({
extensions: ['.svelte.md', '.md', '.svx'],
@@ -13,7 +14,7 @@ const config = defineConfig({
examples,
{
defaults: {
Wrapper: '$routes/_internal/components/Example.svelte',
Wrapper: path.resolve('./src/docs/components/Example.svelte'),
},
},
],
@@ -21,7 +22,7 @@ const config = defineConfig({
rehypePlugins: [],
layout: {
_: './src/routes/_internal/layout/page.svelte',
_: './src/docs/layout/page.svelte',
},
});