33 lines
753 B
TypeScript
33 lines
753 B
TypeScript
import type { MetadataRoute } from "next"
|
|
|
|
export const dynamic = "force-static"
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: "https://higgysandroidboxes.com",
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: "https://higgysandroidboxes.com/videos",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: "https://higgysandroidboxes.com/login",
|
|
lastModified: new Date(),
|
|
changeFrequency: "yearly",
|
|
priority: 0.3,
|
|
},
|
|
{
|
|
url: "https://higgysandroidboxes.com/signup",
|
|
lastModified: new Date(),
|
|
changeFrequency: "yearly",
|
|
priority: 0.5,
|
|
},
|
|
]
|
|
}
|