This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs-extra-promise') //install this package | |
var sm = require('sitemap') // install this package | |
function pagesToSitemap(pages) { | |
var urls = pages.map(function(p) { | |
if (p.path !== undefined) { | |
return { | |
url: p.path, | |
changefreq: 'daily', | |
priority: 0.7 |