From febf7b97943e4261416c2986320556303c30e5e9 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 22 Jan 2024 23:11:49 -0500 Subject: Hopefully fixed image not displaying? --- astro.config.mjs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'astro.config.mjs') diff --git a/astro.config.mjs b/astro.config.mjs index 410bc3e..fbcb3c1 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,4 +1,4 @@ -import { defineConfig } from 'astro/config'; +import {defineConfig, passthroughImageService} from 'astro/config'; import icon from "astro-icon"; import vue from '@astrojs/vue'; @@ -8,5 +8,8 @@ import vercel from "@astrojs/vercel/serverless"; export default defineConfig({ integrations: [icon(), vue()], output: "server", - adapter: vercel() + adapter: vercel(), + image: { + service: passthroughImageService(), + } }); -- cgit v1.2.3