mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-02-23 11:05:52 +01:00
19 lines
417 B
JavaScript
19 lines
417 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
import tailwind from "@astrojs/tailwind";
|
|
import rehypeExternalLinks from 'rehype-external-links';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
markdown: {
|
|
rehypePlugins: [
|
|
[rehypeExternalLinks, { target: '_blank'}]
|
|
]
|
|
},
|
|
integrations: [tailwind({
|
|
config: {
|
|
applyBaseStyles: false
|
|
}
|
|
})]
|
|
}); |