Merge branch 'develop' into feat/stories

This commit is contained in:
Sam Carlton 2021-03-15 21:13:58 -05:00
commit 3e8e878df5
3 changed files with 8 additions and 1 deletions

View file

@ -315,6 +315,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
}
}