aboutsummaryrefslogtreecommitdiff
path: root/astro.config.mjs
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-22 23:11:49 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-22 23:11:49 -0500
commitfebf7b97943e4261416c2986320556303c30e5e9 (patch)
tree4dc000c52ef81842a280da2938d642d3b6aab0e1 /astro.config.mjs
parent99141f7c547dbf3aa6af262bed169cd00cc4d19a (diff)
downloadpersonal-website-febf7b97943e4261416c2986320556303c30e5e9.tar.gz
personal-website-febf7b97943e4261416c2986320556303c30e5e9.tar.bz2
personal-website-febf7b97943e4261416c2986320556303c30e5e9.zip
Hopefully fixed image not displaying?
Diffstat (limited to 'astro.config.mjs')
-rw-r--r--astro.config.mjs7
1 files changed, 5 insertions, 2 deletions
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(),
+ }
});