wip: expose Markdoc from integration
This commit is contained in:
parent
36f2f01d6d
commit
41275d2521
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
import type { AstroIntegration } from 'astro';
|
import type { AstroIntegration } from 'astro';
|
||||||
import type { InlineConfig } from 'vite';
|
import type { InlineConfig } from 'vite';
|
||||||
|
import _Markdoc from '@markdoc/markdoc';
|
||||||
|
|
||||||
export default function markdoc(partialOptions: {} = {}): AstroIntegration {
|
export default function markdoc(partialOptions: {} = {}): AstroIntegration {
|
||||||
return {
|
return {
|
||||||
|
@ -25,3 +26,5 @@ export default function markdoc(partialOptions: {} = {}): AstroIntegration {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const Markdoc = _Markdoc;
|
||||||
|
|
Loading…
Reference in a new issue