somewhat working

This commit is contained in:
Henry Hiles 2026-01-01 00:45:40 -05:00
commit 80a205e250
No known key found for this signature in database
8 changed files with 263 additions and 83 deletions

View file

@ -1,5 +1,7 @@
// @ts-check
import { defineConfig } from 'astro/config';
import { defineConfig, passthroughImageService } from "astro/config"
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
image: { service: passthroughImageService() },
})