14 lines
283 B
TypeScript
14 lines
283 B
TypeScript
import { BASE_URL } from "@/lib/constants";
|
|
import { type MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: BASE_URL,
|
|
lastModified: new Date(),
|
|
changeFrequency: "yearly",
|
|
priority: 1,
|
|
},
|
|
];
|
|
}
|