diff --git a/build-lists.js b/build-lists.js index d4f1394..f497311 100644 --- a/build-lists.js +++ b/build-lists.js @@ -301,6 +301,10 @@ class BuildLists { return Array.from( endpointSet , ([route, payload]) => ({ route, payload }) ) } ).flat(1), './static/sitemap-endpoints.json') + console.log('Total Nuxt Endpoints', this.endpointMaps.nuxt.size ) + console.log('Total Eleventy Endpoints', this.endpointMaps.eleventy.size ) + console.log('Total Endpoints', this.endpointMaps.nuxt.size + this.endpointMaps.eleventy.size ) + return } } diff --git a/nuxt.config.js b/nuxt.config.js index 1a07710..ff6ff59 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -135,7 +135,7 @@ export default { return JSON.parse(endpointsJson) }) - console.log('Total Sitemap Endpoints', sitemapEndpoints.length) + // console.log('Total Sitemap Endpoints', sitemapEndpoints.length) return sitemapEndpoints.map( endpoint => endpoint.route ) }