From 6468775edcd2ff6b39c31a5a7efec75b33618b00 Mon Sep 17 00:00:00 2001 From: Web Artisan Date: Fri, 18 Sep 2026 18:12:13 +0300 Subject: [PATCH] chore(site): point links to junctio.org --- apps/site/README.md | 4 ++-- apps/site/astro.config.mjs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/site/README.md b/apps/site/README.md index 52d3a01..f30180f 100644 --- a/apps/site/README.md +++ b/apps/site/README.md @@ -1,6 +1,6 @@ # Junctio site -The landing page and the rendered documentation at junctio.pages.dev, built with Astro, Tailwind 4 and Vue islands. +The landing page and the rendered documentation at junctio.org, built with Astro, Tailwind 4 and Vue islands. The documentation pages are generated from `../../docs/*.md` at build time; nothing under `src/content` duplicates them. Use-case pages live in `src/content/use-cases` and are the only prose authored here. @@ -27,4 +27,4 @@ Two environment variables, both for the production and the preview environment: | `SKIP_DEPENDENCY_INSTALL` | `1` | Stops Pages from running `npm install` before the build command | | `BUN_VERSION` | `1.4.2` | Matches the version CI uses | -`SITE_URL` is optional and defaults to `https://junctio.pages.dev`. Set it once the site has its own domain; canonical URLs, the sitemap and the link to it in `robots.txt` all follow it. +`SITE_URL` is optional and defaults to `https://junctio.org`; canonical URLs, the sitemap and the link to it in `robots.txt` all follow it. diff --git a/apps/site/astro.config.mjs b/apps/site/astro.config.mjs index cb6bf08..c132c8e 100644 --- a/apps/site/astro.config.mjs +++ b/apps/site/astro.config.mjs @@ -7,7 +7,7 @@ import tailwindcss from "@tailwindcss/vite"; import { rehypeDocLinks } from "./src/lib/rehype-doc-links.ts"; export default defineConfig({ - site: process.env.SITE_URL ?? "https://junctio.pages.dev", + site: process.env.SITE_URL ?? "https://junctio.org", trailingSlash: "always", integrations: [vue(), mdx(), sitemap()], markdown: {