Skip to content

Commit 882c645

Browse files
Update apps/web-roo-code/next-sitemap.config.cjs
Co-authored-by: roomote[bot] <219738659+roomote[bot]@users.noreply.github.com>
1 parent b399af9 commit 882c645

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

apps/web-roo-code/next-sitemap.config.cjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,13 @@ module.exports = {
5252
additionalPaths: async (config) => {
5353
// Add any additional paths that might not be automatically discovered
5454
// This is useful for dynamic routes or API-generated pages
55-
const result = [];
55+
// Add the /evals page since it's a dynamic route
56+
return [{
57+
loc: '/evals',
58+
changefreq: 'monthly',
59+
priority: 0.8,
60+
lastmod: new Date().toISOString(),
61+
}];
5662

5763
// Add the /evals page since it's a dynamic route
5864
result.push({

0 commit comments

Comments
 (0)