thp-web/astro.config.mjs

12 lines
280 B
JavaScript
Raw Permalink Normal View History

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