aboutsummaryrefslogtreecommitdiff
path: root/astro.config.mjs
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-02-04 00:09:03 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-02-04 00:12:44 -0500
commit27153476429c4a85630dedcf940a50089ea02151 (patch)
tree0ff21d13a79c5b73dad90caa9bbfe161cd132b07 /astro.config.mjs
parent4c84e203859be34da582f51371adc6eeb370b518 (diff)
downloadpersonal-website-27153476429c4a85630dedcf940a50089ea02151.tar.gz
personal-website-27153476429c4a85630dedcf940a50089ea02151.tar.bz2
personal-website-27153476429c4a85630dedcf940a50089ea02151.zip
Made card more consistent; Guestbook submits; Web analytics
Diffstat (limited to 'astro.config.mjs')
-rw-r--r--astro.config.mjs8
1 files changed, 6 insertions, 2 deletions
diff --git a/astro.config.mjs b/astro.config.mjs
index b538d31..c17d797 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -9,7 +9,11 @@ export default defineConfig({
site: 'https://alee14.me',
integrations: [icon(), preact()],
output: "server",
- adapter: vercel(),
+ adapter: vercel({
+ webAnalytics: {
+ enabled: true,
+ },
+ }),
image: {
service: passthroughImageService()
},
@@ -27,4 +31,4 @@ export default defineConfig({
transformers: []
}
}
-}); \ No newline at end of file
+});