diff options
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index b4fe6c6..b57d952 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -6,17 +6,15 @@ import mdx from "@astrojs/mdx"; import icon from "astro-icon"; import rehypeExternalLinks from "rehype-external-links"; +import compressor from "astro-compressor"; + export default defineConfig({ compressHTML: true, site: "https://www.costas.dev", - integrations: [ - sitemap({ - priority: 0.5, - changefreq: "weekly", - }), - mdx(), - icon(), - ], + integrations: [sitemap({ + priority: 0.5, + changefreq: "weekly", + }), mdx(), icon(), compressor()], build: { assets: "assets", inlineStylesheets: "never", @@ -35,4 +33,4 @@ export default defineConfig({ ] ] } -}); +});
\ No newline at end of file |
