astro/packages/markdown/component/test/fixtures/astro-markdown/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
256 B
JavaScript
Raw Normal View History

import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
import svelte from "@astrojs/svelte";
// https://astro.build/config
export default defineConfig({
integrations: [preact(), svelte()],
site: 'https://astro.build/',
});