sitemap-rspack-plugin
Advanced tools
Changelog
1.1.1
compilation.emitAsset
// Before:
{
// snip
plugins: [
new SitemapPlugin(
'https://mysite.com',
[
{
path: '/foo/',
lastMod: '2015-01-04',
priority: '0.8',
changeFreq: 'daily'
},
{
path: '/bar/',
}
],
{
fileName: 'map.xml',
lastMod: true,
changeFreq: 'monthly',
priority: '0.4'
}
)
]
}
// After:
{
// snip
plugins: [
new SitemapPlugin({
base: 'https://mysite.com',
paths: [
{
path: '/foo/',
lastmod: '2015-01-04',
priority: 0.8,
changefreq: 'daily'
},
{
path: '/bar/',
}
],
options: {
filename: 'map.xml',
lastmod: true,
changefreq: 'monthly',
priority: 0.4
}
})
]
}