aboutsummaryrefslogtreecommitdiff
path: root/web/astro.config.mjs
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-01-12 00:42:57 -0500
committerAndrew Lee <andrew@alee14.me>2025-01-12 00:42:57 -0500
commit9b484f3f18c7fb4c6d85cb696999271c993e9753 (patch)
tree015e8191749291080768e07858004683c7a24be0 /web/astro.config.mjs
parent7e65ae0e135098acad76b8081f34478b4efc077f (diff)
downloadAleeBot-9b484f3f18c7fb4c6d85cb696999271c993e9753.tar.gz
AleeBot-9b484f3f18c7fb4c6d85cb696999271c993e9753.tar.bz2
AleeBot-9b484f3f18c7fb4c6d85cb696999271c993e9753.zip
Updated packages; Docker support for web; Fixed issues with author image
Diffstat (limited to 'web/astro.config.mjs')
-rw-r--r--web/astro.config.mjs8
1 files changed, 7 insertions, 1 deletions
diff --git a/web/astro.config.mjs b/web/astro.config.mjs
index 515ddf0..c0fd9ad 100644
--- a/web/astro.config.mjs
+++ b/web/astro.config.mjs
@@ -3,7 +3,13 @@ import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
+import node from '@astrojs/node';
+
// https://astro.build/config
export default defineConfig({
- integrations: [react()]
+ integrations: [react()],
+
+ adapter: node({
+ mode: 'standalone'
+ })
});