chore(astro): add support for MDX, Svelte, and Tailwind CSS

This commit is contained in:
Stefan Imhoff
2023-02-12 12:19:01 +01:00
parent 3a1d463208
commit 99a3bdab56
6 changed files with 1645 additions and 100 deletions

View File

@@ -1,4 +1,9 @@
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({});
import mdx from '@astrojs/mdx';
import svelte from '@astrojs/svelte';
import tailwind from '@astrojs/tailwind';
export default defineConfig({
integrations: [mdx(), svelte(), tailwind()],
});