Update sitemap.mjs

This commit is contained in:
RBPi 2024-07-16 03:06:24 +03:00
parent a477f47aec
commit 8c2a1f002c

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
});