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

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'
})]
});