mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 22:32:27 +08:00
13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
|
|
import { MetadataRoute } from 'next'
|
||
|
|
|
||
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
||
|
|
return [
|
||
|
|
{
|
||
|
|
url: 'https://next-ai-draw-io.vercel.app',
|
||
|
|
lastModified: new Date(),
|
||
|
|
changeFrequency: 'weekly',
|
||
|
|
priority: 1,
|
||
|
|
},
|
||
|
|
]
|
||
|
|
}
|