2022-07-20 20:45:05 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import preact from '@astrojs/preact';
|
|
|
|
import svelte from "@astrojs/svelte";
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-07-22 22:45:16 +00:00
|
|
|
legacy: {
|
|
|
|
astroFlavoredMarkdown: true,
|
|
|
|
},
|
2022-07-20 20:45:05 +00:00
|
|
|
integrations: [preact(), svelte()],
|
|
|
|
site: 'https://astro.build/',
|
|
|
|
});
|