aboutsummaryrefslogtreecommitdiff
path: root/astro.config.mjs
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-06-28 20:31:02 -0400
committerAndrew Lee <alee14498@protonmail.com>2024-06-28 20:31:02 -0400
commit64cd7fc83d43a0ad7db1b51214291736bd245b44 (patch)
treeda8f9e47d50583932e144fa6b21585d5dd70bd21 /astro.config.mjs
parent8edeebb44d9b3636268d95c30d462593d9a074d8 (diff)
downloadpersonal-website-64cd7fc83d43a0ad7db1b51214291736bd245b44.tar.gz
personal-website-64cd7fc83d43a0ad7db1b51214291736bd245b44.tar.bz2
personal-website-64cd7fc83d43a0ad7db1b51214291736bd245b44.zip
Guestbook overhaul; Comments; New post; Updated packages
Diffstat (limited to 'astro.config.mjs')
-rw-r--r--astro.config.mjs10
1 files changed, 6 insertions, 4 deletions
diff --git a/astro.config.mjs b/astro.config.mjs
index c17d797..fd2a541 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -1,18 +1,20 @@
import { defineConfig, passthroughImageService } from 'astro/config';
import icon from "astro-icon";
import vercel from "@astrojs/vercel/serverless";
-
import preact from "@astrojs/preact";
+import svelte from "@astrojs/svelte";
// https://astro.build/config
export default defineConfig({
site: 'https://alee14.me',
- integrations: [icon(), preact()],
+ integrations: [icon(), preact({
+ compat: true
+ }), svelte()],
output: "server",
adapter: vercel({
webAnalytics: {
- enabled: true,
- },
+ enabled: true
+ }
}),
image: {
service: passthroughImageService()