mirror of
https://github.com/SrIzan10/spongebin.git
synced 2026-05-01 11:05:09 +00:00
14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
import type { MetadataRoute } from "next";
|
|
import { SITE_URL } from "~/constants/site";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: SITE_URL,
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 1,
|
|
},
|
|
];
|
|
}
|