Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
691 B

import { defineConfig } from 'astro/config';
import { shouldIndexPage } from './src/lib/sitemap';
// https://astro.build/config
import tailwind from '@astrojs/tailwind';
import rehypeExternalLinks from 'rehype-external-links';
// https://astro.build/config
import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://roadmap.sh',
markdown: {
rehypePlugins: [
[
rehypeExternalLinks,
{
target: '_blank',
},
],
],
},
integrations: [
tailwind({
config: {
applyBaseStyles: false,
},
}),
sitemap({
filter: shouldIndexPage,
}),
],
});