2024-08-02 23:45:27 -06:00
|
|
|
import { defineConfig } from "astro/config";
|
2024-08-02 22:27:39 -06:00
|
|
|
|
2024-10-30 16:32:44 -06:00
|
|
|
import compressor from "astro-compressor";
|
2024-08-03 10:37:51 -06:00
|
|
|
import mdx from "@astrojs/mdx";
|
2024-10-30 16:32:44 -06:00
|
|
|
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
|
2024-08-02 23:45:27 -06:00
|
|
|
export default defineConfig({
|
2024-08-03 10:42:36 -06:00
|
|
|
site: "https://nelle.observer",
|
2024-10-30 19:33:57 -06:00
|
|
|
outDir: "./build",
|
|
|
|
integrations: [mdx(), compressor(), sitemap()],
|
2024-08-02 23:45:27 -06:00
|
|
|
});
|
2024-10-30 19:33:57 -06:00
|
|
|
// min and compressor always last!
|