From be42d5324e1004517e88b27b6f34edfb40209c03 Mon Sep 17 00:00:00 2001 From: Gavin Anderegg Date: Tue, 2 Jul 2024 09:41:30 -0300 Subject: [PATCH] Updating canonical URL I was reading the docs, and emailed this link to myself using the iOS share sheet: `https://doggo.mrkaran.dev/docs/`. When I got the email, the link had been changed to `https://doggo.karan.dev/docs` which is the canonical link based on the `site` setting in `docs/astro.config.mjs`. --- docs/astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index bf8794a..ae96ad9 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -5,7 +5,7 @@ import { defineConfig, passthroughImageService } from "astro/config"; // https://astro.build/config export default defineConfig({ base: "/docs", - site: "https://doggo.karan.dev/docs", + site: "https://doggo.mrkaran.dev/docs/", image: { service: passthroughImageService(), },