|
|
@@ -52,6 +52,22 @@ module.exports = {
|
|
|
additionalPaths: async (config) => {
|
|
|
// Add any additional paths that might not be automatically discovered
|
|
|
// This is useful for dynamic routes or API-generated pages
|
|
|
- return [];
|
|
|
+ // Add the /evals page since it's a dynamic route
|
|
|
+ return [{
|
|
|
+ loc: '/evals',
|
|
|
+ changefreq: 'monthly',
|
|
|
+ priority: 0.8,
|
|
|
+ lastmod: new Date().toISOString(),
|
|
|
+ }];
|
|
|
+
|
|
|
+ // Add the /evals page since it's a dynamic route
|
|
|
+ result.push({
|
|
|
+ loc: '/evals',
|
|
|
+ changefreq: 'monthly',
|
|
|
+ priority: 0.8,
|
|
|
+ lastmod: new Date().toISOString(),
|
|
|
+ });
|
|
|
+
|
|
|
+ return result;
|
|
|
},
|
|
|
};
|