Initial commit

This commit is contained in:
Martin Prokoph
2024-02-07 17:31:28 +01:00
committed by GitHub
commit dbd4e1e2e1
58 changed files with 12225 additions and 0 deletions

13
astro.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import tailwind from '@astrojs/tailwind'
import compress from 'astro-compress'
import icon from "astro-icon"
// https://astro.build/config
export default defineConfig({
compressHTML: true,
integrations: [mdx(), icon(), tailwind({
applyBaseStyles: false,
}), compress()],
})