2024-08-02 23:45:27 -06:00
|
|
|
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
|
2024-08-02 23:45:27 -06:00
|
|
|
export default defineConfig({
|
2024-08-03 10:42:36 -06:00
|
|
|
site: "https://nelle.observer",
|
2024-09-05 01:26:26 -06:00
|
|
|
outDir: './ktor/src/main/resources/static/',
|
2024-08-02 23:45:27 -06:00
|
|
|
integrations: [
|
2024-08-03 10:37:51 -06:00
|
|
|
mdx(),
|
2024-08-02 23:45:27 -06:00
|
|
|
compressor(),
|
|
|
|
],
|
|
|
|
});
|
|
|
|
// min and compressor always last!
|