www.hip-berlin.de/astro.config.mjs

10 lines
273 B
JavaScript
Raw Permalink Normal View History

2022-11-06 20:02:17 +00:00
import { defineConfig } from 'astro/config';
2022-11-18 15:09:51 +00:00
import compress from "astro-compress";
2022-11-23 21:41:04 +00:00
import image from "@astrojs/image";
2022-11-18 15:09:51 +00:00
2022-11-23 21:41:04 +00:00
// https://astro.build/config
2022-11-18 15:09:51 +00:00
export default defineConfig({
2022-11-23 21:41:04 +00:00
integrations: [compress(), image({
serviceEntryPoint: '@astrojs/image/sharp'
})]
2022-11-18 15:09:51 +00:00
});