🔍 Improve sitemap
This commit is contained in:
parent
21a02689dd
commit
48690b1b88
@ -8,10 +8,17 @@ export default defineNuxtConfig({
|
||||
name: "Solsynth LLC",
|
||||
},
|
||||
sitemap: {
|
||||
strictNuxtContentPaths: true,
|
||||
cacheMaxAgeSeconds: 3600,
|
||||
sitemapsPathPrefix: "/sitemap",
|
||||
sitemaps: {
|
||||
pages: {
|
||||
includeAppSources: true,
|
||||
exclude: ["/flow/**"],
|
||||
defaults: { priority: 0.8 },
|
||||
},
|
||||
posts: {
|
||||
includeAppSources: false,
|
||||
sources: [
|
||||
"/api/sitemap/posts",
|
||||
],
|
||||
|
@ -7,7 +7,7 @@ export default defineSitemapEventHandler(async () => {
|
||||
return result.data.map((item: any) => asSitemapUrl({
|
||||
loc: `/posts/${item.id}`,
|
||||
lastmod: item.edited_at ?? item.published_at,
|
||||
priority: 0.9,
|
||||
priority: 0.7,
|
||||
_sitemap: "posts",
|
||||
}));
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user