gpt4 book ai didi

Gatsby 插件站点地图不会为我的网站生成站点地图

转载 作者:行者123 更新时间:2023-12-05 07:13:39 25 4
gpt4 key购买 nike

以下代码不会生成我的 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,
}
})
}
}

最佳答案

您需要在选项中添加您的主域作为host: "https://www.yourwebsite.com",

关于Gatsby 插件站点地图不会为我的网站生成站点地图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60098890/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com