We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b2c1da commit 0a366c7Copy full SHA for 0a366c7
apps/web-roo-code/.env.example
@@ -6,3 +6,6 @@ NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com
6
# Basin Form Endpoint for Static Form Submissions
7
# Replace this with your actual Basin form endpoint (e.g., https://usebasin.com/f/your-form-id)
8
NEXT_PUBLIC_BASIN_ENDPOINT=https://usebasin.com/f/your-form-id-here
9
+
10
+# Site URL used for canonical links and robots
11
+NEXT_PUBLIC_SITE_URL=https://roocode.com
apps/web-roo-code/src/lib/seo.ts
@@ -1,5 +1,7 @@
1
+const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://roocode.com"
2
3
export const SEO = {
- url: "https://roocode.com",
4
+ url: SITE_URL,
5
name: "Roo Code",
title: "Roo Code – Your AI-Powered Dev Team in VS Code",
description:
0 commit comments