started coding the docs

This commit is contained in:
2024-02-01 14:50:19 +01:00
parent e4eb93c180
commit a77cbf4a49
8 changed files with 643 additions and 3 deletions

View File

@@ -1,9 +1,10 @@
import { defineConfig } from 'astro/config';
import minify from 'astro-min';
import metaTags from "astro-meta-tags";
import mdx from "@astrojs/mdx";
// https://astro.build/config
export default defineConfig({
integrations: [minify(), metaTags()]
integrations: [minify(), metaTags(), mdx()]
});