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 3d2673b commit 253d5acCopy full SHA for 253d5ac
apps/web-roo-code/next-sitemap.config.cjs
@@ -52,6 +52,22 @@ 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
- return [];
+ // 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
64
+ result.push({
65
66
67
68
69
+ });
70
71
+ return result;
72
},
73
};
0 commit comments