【发布时间】:2020-05-22 17:32:27
【问题描述】:
以下代码不会生成我的 Gatsby 网站的站点地图。我使用 wordpress 作为我的 CMS。有什么建议我做错了吗?
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-sitemap`,
options: {
output: `./expatsitemap.xml/`,
exclude: [`/category/*`],
query: `
{
site {
siteMetadata {
siteUrl
}
}
allSitePage {
edges {
node {
path
}
}
}
}`,
serialize: ({ site, allSitePage }) =>
allSitePage.edges.map(edge => {
return {
url: site.siteMetadata.siteUrl + edge.node.path,
changefreq: `daily`,
priority: 0.7,
}
})
}
}
【问题讨论】:
标签: gatsby sitemap wordpress-rest-api