www.hip-berlin.de/astro.config.mjs
2022-11-23 22:41:04 +01:00

10 lines
273 B
JavaScript

import { defineConfig } from 'astro/config';
import compress from "astro-compress";
import image from "@astrojs/image";
// https://astro.build/config
export default defineConfig({
integrations: [compress(), image({
serviceEntryPoint: '@astrojs/image/sharp'
})]
});