From c7b49df433d25f343e336fdf5f972f479a2cd07e Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Fri, 8 May 2026 17:39:09 -0500 Subject: [PATCH] feat: allow processing svg --- astro.config.mjs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 5c38651..c573bb6 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -16,6 +16,10 @@ const getSiteURL = () => { export default defineConfig({ site: getSiteURL(), + image: { + dangerouslyProcessSVG: true + }, + prefetch: true, integrations: [ @@ -37,7 +41,7 @@ export default defineConfig({ ], expressiveCode: { themes: ['vitesse-light', 'vitesse-dark'], - }, + }, social: [ { icon: "external", @@ -63,7 +67,7 @@ export default defineConfig({ autogenerate: { directory: "applications" }, }, ], - }) + }) ], output: 'static',