astro.config.mjs 375 B

1234567891011121314
  1. import { defineConfig } from 'astro/config';
  2. // https://astro.build/config
  3. export default defineConfig({
  4. // Enable Custom Markdown options, plugins, etc.
  5. markdown: {
  6. syntaxHighlight: 'shiki',
  7. shikiConfig: {
  8. theme: 'dracula',
  9. // Learn more about this configuration here:
  10. // https://docs.astro.build/en/guides/markdown-content/#syntax-highlighting
  11. },
  12. },
  13. });