Deyan Bozhilov
Deyan Bozhilov
Hi @wojtekmaj , have you been able to implement this feature yet?
@edwardfxiao I managed to get the required result like that: ``` const date = new Date().toISOString().slice(0, 10); for (const entry of baseSitemap.sitemaps[0].urls) { entry.lastmod = date; entry.changefreq = 'weekly'; entry.priority...
Had an issue with other packages failing when I applied @alexgleason 's solution. So I came up with this: Step 1: create `__mocks__` folder in root directory Step 2: add...