From 5b19b72ebf792358265a9b4db60bf539693b9ecc Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Mon, 28 Oct 2024 19:54:51 +0100 Subject: [PATCH] Enable SSR --- frontend/astro.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/astro.config.mjs b/frontend/astro.config.mjs index e762ba5..fe47d5d 100644 --- a/frontend/astro.config.mjs +++ b/frontend/astro.config.mjs @@ -2,4 +2,6 @@ import { defineConfig } from 'astro/config'; // https://astro.build/config -export default defineConfig({}); +export default defineConfig({ + output: "server", +});