seo: add sitemap.ts
This commit is contained in:
parent
2af2486e90
commit
6608963683
1 changed files with 12 additions and 0 deletions
12
src/app/sitemap.ts
Normal file
12
src/app/sitemap.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { MetadataRoute } from "next";
|
||||
|
||||
export default function sitemap(): MetadataRoute.Sitemap {
|
||||
return [
|
||||
{
|
||||
url: "https://www.wilddragon.net",
|
||||
lastModified: new Date(),
|
||||
changeFrequency: "monthly",
|
||||
priority: 1,
|
||||
},
|
||||
];
|
||||
}
|
||||
Loading…
Reference in a new issue