Files
feynman/website/astro.config.mjs
2026-03-24 14:30:09 -07:00

16 lines
320 B
JavaScript

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