Parent Directory
|
Revision Log
chore: sync with git
1 | rakinar2 | 575 | import urls from "@/sitemap.json"; |
2 | rakinar2 | 626 | import { absoluteURL } from "@/utils/utils"; |
3 | rakinar2 | 575 | import { MetadataRoute } from "next"; |
4 | |||
5 | export default function Sitemap(): MetadataRoute.Sitemap { | ||
6 | rakinar2 | 626 | return urls |
7 | .filter(url => url.loc !== "/blog" && !url.loc.startsWith("/blog/")) | ||
8 | .map(url => ({ | ||
9 | url: absoluteURL(url.loc), | ||
10 | lastModified: url.lastmod, | ||
11 | priority: url.priority === 1 ? 1 : undefined, | ||
12 | })); | ||
13 | rakinar2 | 575 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |