From 2434e64093d57cb31be3bfbc538207f0c8a1105d Mon Sep 17 00:00:00 2001 From: "DESKTOP-RTLN3BA\\$punk" Date: Tue, 27 Jan 2026 01:08:17 -0800 Subject: [PATCH] feat(sitemap): add how-to documentation URL to sitemap with daily change frequency --- surfsense_web/app/sitemap.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/surfsense_web/app/sitemap.ts b/surfsense_web/app/sitemap.ts index 0e8441aa5..2f59c2b2d 100644 --- a/surfsense_web/app/sitemap.ts +++ b/surfsense_web/app/sitemap.ts @@ -175,5 +175,12 @@ export default function sitemap(): MetadataRoute.Sitemap { changeFrequency: "daily", priority: 0.8, }, + // How-to documentation + { + url: "https://www.surfsense.com/docs/how-to/electric-sql", + lastModified, + changeFrequency: "daily", + priority: 0.8, + }, ]; }