nelle-observer/frontend/astro.config.mjs

13 lines
364 B
JavaScript
Raw Normal View History

import { defineConfig } from "astro/config";
2024-08-02 22:27:39 -06:00
import compressor from "astro-compressor";
2024-08-03 10:37:51 -06:00
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
2024-08-03 10:37:51 -06:00
2024-08-02 22:27:39 -06:00
// https://astro.build/config
export default defineConfig({
2024-08-03 10:42:36 -06:00
site: "https://nelle.observer",
2024-09-15 19:50:24 -06:00
outDir: './build',
integrations: [mdx(), compressor(), sitemap()]
});
// min and compressor always last!