Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/site/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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.
2 changes: 1 addition & 1 deletion apps/site/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Loading