1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 04:59:50 +02:00

Rearrange scripts

This commit is contained in:
Kamran Ahmed
2023-05-08 22:16:27 +01:00
parent 6fcb153244
commit 0ba1a8a1d1
13 changed files with 10 additions and 615 deletions

View File

@@ -2,7 +2,6 @@
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';
@@ -54,10 +53,6 @@ export default defineConfig({
filter: shouldIndexPage,
serialize: serializeSitemap,
}),
compress({
css: false,
js: false,
}),
preact(),
],
});