diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-22 23:11:49 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-22 23:11:49 -0500 |
| commit | febf7b97943e4261416c2986320556303c30e5e9 (patch) | |
| tree | 4dc000c52ef81842a280da2938d642d3b6aab0e1 /astro.config.mjs | |
| parent | 99141f7c547dbf3aa6af262bed169cd00cc4d19a (diff) | |
| download | personal-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.mjs | 7 |
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(), + } }); |
