2023-02-06 21:11:15 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import markdoc from '@astrojs/markdoc';
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2023-03-01 18:35:53 +00:00
|
|
|
integrations: [
|
|
|
|
markdoc({
|
|
|
|
variables: {
|
|
|
|
revealSecret: true,
|
|
|
|
},
|
|
|
|
tags: {
|
|
|
|
aside: {
|
|
|
|
render: 'Aside',
|
|
|
|
attributes: {
|
|
|
|
type: { type: String },
|
|
|
|
title: { type: String },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
2023-02-06 21:11:15 +00:00
|
|
|
});
|