// @ts-check import { defineConfig } from 'astro/config'; import mdx from '@astrojs/mdx'; import remarkMath from 'remark-math' import rehypeKatex from 'rehype-katex' import sitemap from '@astrojs/sitemap'; // https://astro.build/config export default defineConfig({ vite: { assetsInclude: ['**/*.base', '**/.obsidian/**', '**/_bases/**'], }, site: 'https://pantonius.dev', markdown: { remarkPlugins: [remarkMath], rehypePlugins: [rehypeKatex] }, integrations: [mdx({ syntaxHighlight: 'shiki', shikiConfig: { theme: "dracula" }, }), sitemap()], });