sitemap.xml
通过@nuxtjs/sitemap模块根据前端路由自动生成。
./config/sitemap.js
sitemap路由列表
export const routes = [ '/:lang', '/:lang/about', '/:lang/parent', '/:lang/parent/about', '/test']
nuxt.config.js
sitemap.xml生成配置,生成多语言的网站地图
sitemap: {
gzip: true,
defaults: {
changefreq: 'daily',
priority: 1,
lastmod: new Date()
},
routes: () => {
const list = []
locales = ['zh-cn','en-us','zh-hk'] sitemapRoutes.forEach((route) => {
if (route.includes(':lang') > -1) { locales.forEach((local) => { list.push(route.replace(':lang', local))
})
} else {
list.push(route)
}
})
return list
}
},
本文章由javascript技术分享原创和收集
发表评论 (审核通过后显示评论):