File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,7 @@ NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com
66# Basin Form Endpoint for Static Form Submissions
77# Replace this with your actual Basin form endpoint (e.g., https://usebasin.com/f/your-form-id)
88NEXT_PUBLIC_BASIN_ENDPOINT = https://usebasin.com/f/your-form-id-here
9+
10+ # Site URL Configuration
11+ # Used for generating absolute URLs in sitemap and other contexts
12+ NEXT_PUBLIC_SITE_URL = https://roocode.com
Original file line number Diff line number Diff line change 11import { MetadataRoute } from "next"
22
33export default function sitemap ( ) : MetadataRoute . Sitemap {
4- const baseUrl = "https://roocode.com"
4+ const baseUrl = process . env . NEXT_PUBLIC_SITE_URL || "https://roocode.com"
55
66 return [
77 {
You can’t perform that action at this time.
0 commit comments