Roadmap to becoming a developer in 2022

19 lines
417 B

2 years ago
import { defineConfig } from 'astro/config';
// https://astro.build/config
import tailwind from "@astrojs/tailwind";
import rehypeExternalLinks from 'rehype-external-links';
2 years ago
// https://astro.build/config
export default defineConfig({
markdown: {
rehypePlugins: [
[rehypeExternalLinks, { target: '_blank'}]
]
},
integrations: [tailwind({
config: {
applyBaseStyles: false
}
})]
2 years ago
});