From d479d48d2c1c732b8eb525f6e502d582d1ca8d78 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 18 Feb 2024 19:30:20 +0000 Subject: [PATCH] Adds Svelte integration, for dynamic components --- web/astro.config.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/astro.config.mjs b/web/astro.config.mjs index 882e651..f730f7f 100644 --- a/web/astro.config.mjs +++ b/web/astro.config.mjs @@ -1,4 +1,8 @@ import { defineConfig } from 'astro/config'; +import svelte from "@astrojs/svelte"; + // https://astro.build/config -export default defineConfig({}); +export default defineConfig({ + integrations: [svelte()] +}); \ No newline at end of file