From 9b484f3f18c7fb4c6d85cb696999271c993e9753 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 12 Jan 2025 00:42:57 -0500 Subject: Updated packages; Docker support for web; Fixed issues with author image --- web/astro.config.mjs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'web/astro.config.mjs') 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' + }) }); -- cgit v1.2.3