aboutsummaryrefslogtreecommitdiff
path: root/astro.config.mjs
blob: 843c99733b1d6a47c83fb899ac9aed6a38294bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import sitemap from '@astrojs/sitemap';
import { defineConfig } from 'astro/config';

import mdx from '@astrojs/mdx';

export default defineConfig({
    compressHTML: true,
    site: "https://www.costas.dev",
    integrations: [sitemap({
        priority: 0.5,
        changefreq: 'weekly'
    }), mdx()],
    build: {
        assets: 'assets',
        inlineStylesheets: 'never',
    },
});