This commit is contained in:
Huge 2025-04-14 18:45:45 +01:00 committed by GitHub
commit ccd46089f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,14 +15,14 @@ const smStream = new sm.SitemapStream({
});
smStream.write({
url: "/",
url: "CyberChef/",
changefreq: "weekly",
priority: 1.0
});
for (const op in OperationConfig) {
smStream.write({
url: `/?op=${encodeURIComponent(op)}`,
url: `CyberChef/?op=${encodeURIComponent(op)}`,
changeFreq: "yearly",
priority: 0.5
});