thp-lang.org/astro.config.mjs

13 lines
271 B
JavaScript
Raw Normal View History

2024-11-23 21:45:31 +00:00
import { defineConfig } from "astro/config";
2024-04-23 15:16:51 +00:00
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
// https://astro.build/config
export default defineConfig({
2024-11-23 21:45:31 +00:00
integrations: [tailwind(), mdx()],
markdown: {
syntaxHighlight: "prism",
},
});