import { defineConfig } from 'astro/config'; import tailwind from '@astrojs/tailwind'; export default defineConfig({ integrations: [tailwind()], site: 'https://feynman.is', markdown: { shikiConfig: { themes: { light: 'everforest-light', dark: 'everforest-dark', }, }, }, });