12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import remarkAlert from 'remark-github-blockquote-alert';
|
|
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [],
|
|
markdown: {
|
|
remarkPlugins: [remarkAlert]
|
|
}
|
|
});
|