driver.js / docs /astro.config.mjs
kamrify's picture
Add migration guide
a56688a
raw
history blame
394 Bytes
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import react from "@astrojs/react";
import mdx from "@astrojs/mdx";
// https://astro.build/config
export default defineConfig({
markdown: {
shikiConfig: {
// theme: "material-theme"
theme: "monokai"
// theme: 'poimandres'
}
},
integrations: [tailwind(), react(), mdx()]
});