We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b399af9 commit 882c645Copy full SHA for 882c645
apps/web-roo-code/next-sitemap.config.cjs
@@ -52,7 +52,13 @@ module.exports = {
52
additionalPaths: async (config) => {
53
// Add any additional paths that might not be automatically discovered
54
// This is useful for dynamic routes or API-generated pages
55
- const result = [];
+ // 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
+ }];
62
63
// Add the /evals page since it's a dynamic route
64
result.push({
0 commit comments