From d4923e0f26d6a6082454ee49359b22037e161790 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Thu, 26 Mar 2026 15:10:49 +0100 Subject: [PATCH] fix: configure site root For Astro to render absolute links correctly it needs to know where the site root is. This is configured via the site property in astro.config.mjs. --- astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 6a1b51e..03ee98e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -14,6 +14,6 @@ export default defineConfig({ vite: { plugins: [tailwindcss()], }, - + site: "https://testlens.app", integrations: [react(), icon(), mdx()], });