mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
import markdoc from '@astrojs/markdoc';
|
|
import preact from '@astrojs/preact';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [markdoc(), preact()],
|
|
});
|