// @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' } } });