ugh
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m0s

This commit is contained in:
2026-02-24 12:34:39 -07:00
parent e9845965d7
commit 50d8f2a9aa
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ type Card = {
};
export const siteConfig = {
siteUrl: "https://atash.dev",
name: "Atash Consulting",
description: "Independent Software Consulting based in Edmonton, Alberta",

View File

@@ -34,7 +34,7 @@ const resolvedOgImage = ogImage || {
alt: "Atash Consulting",
};
const siteUrl = Astro.url.href;
const siteUrl = siteConfig.siteUrl || Astro.url.href;
const resolvedOgImageUrl = new URL(resolvedOgImage.url, siteUrl).href;
const isProd = import.meta.env.PROD;