website/astro.config.ts
2025-01-25 14:09:07 +00:00

6 lines
217 B
TypeScript

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