1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-16 21:58:30 +01:00
developer-roadmap/astro.config.mjs

19 lines
417 B
JavaScript
Raw Normal View History

2022-12-31 17:01:40 +04:00
import { defineConfig } from 'astro/config';
// https://astro.build/config
import tailwind from "@astrojs/tailwind";
2023-01-01 18:59:38 +04:00
import rehypeExternalLinks from 'rehype-external-links';
2022-12-31 17:01:40 +04:00
// https://astro.build/config
export default defineConfig({
2023-01-01 18:59:38 +04:00
markdown: {
rehypePlugins: [
[rehypeExternalLinks, { target: '_blank'}]
]
},
2022-12-31 19:39:35 +04:00
integrations: [tailwind({
config: {
applyBaseStyles: false
}
})]
2022-12-31 17:01:40 +04:00
});