init blog

This commit is contained in:
2026-01-12 14:12:30 +01:00
parent cd69b0ac26
commit 38d0e7e0a0
22 changed files with 7126 additions and 0 deletions

17
astro.config.mjs Normal file
View File

@@ -0,0 +1,17 @@
// @ts-check
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import mdx from '@astrojs/mdx';
// https://astro.build/config
export default defineConfig({
site: 'https://mintel.me',
integrations: [react(), mdx()],
markdown: {
syntaxHighlight: 'shiki',
shikiConfig: {
theme: 'github-dark'
}
}
});