nelle-observer/frontend/astro.config.mjs

16 lines
328 B
JavaScript
Raw Normal View History

import { defineConfig } from "astro/config";
import compressor from "astro-compressor";
2024-08-02 22:27:39 -06:00
2024-08-03 10:37:51 -06:00
import mdx from "@astrojs/mdx";
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: [
2024-08-03 10:37:51 -06:00
mdx(),
compressor(),
],
});
// min and compressor always last!