2a4bb23b2f
* fix: propagate assets when using document `render: null` * fix: reverse spread order * refactor: use README rec in test * chore: changeset * chore: revert unneeded changes
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
import { defineMarkdocConfig, nodes } from '@astrojs/markdoc/config';
|
|
|
|
export default defineMarkdocConfig({
|
|
nodes: {
|
|
document: {
|
|
...nodes.document,
|
|
render: null,
|
|
}
|
|
}
|
|
})
|