website/astro.config.ts

7 lines
218 B
TypeScript

import { defineConfig, passthroughImageService } from "astro/config"
export default defineConfig({
trailingSlash: "never",
build: { format: "directory" },
image: { service: passthroughImageService() },
})