// @ts-check import tailwindcss from "@tailwindcss/vite" import { defineConfig } from "astro/config" import react from "@astrojs/react" // https://astro.build/config export default defineConfig({ vite: { plugins: [tailwindcss()], }, integrations: [react()], site: 'https://feynman.is', markdown: { shikiConfig: { themes: { light: 'everforest-light', dark: 'everforest-dark', }, }, }, })