1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 21:32:35 +02:00

Add partner images

This commit is contained in:
Kamran Ahmed
2023-05-08 22:48:45 +01:00
parent 0ba1a8a1d1
commit 41de9c47b0
10 changed files with 607 additions and 15 deletions

View File

@@ -2,6 +2,7 @@
import preact from '@astrojs/preact';
import sitemap from '@astrojs/sitemap';
import tailwind from '@astrojs/tailwind';
import compress from 'astro-compress';
import { defineConfig } from 'astro/config';
import rehypeExternalLinks from 'rehype-external-links';
import { serializeSitemap, shouldIndexPage } from './sitemap.mjs';
@@ -53,6 +54,10 @@ export default defineConfig({
filter: shouldIndexPage,
serialize: serializeSitemap,
}),
compress({
css: false,
js: false,
}),
preact(),
],
});