mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-16 12:36:13 +01:00
14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
import { env } from '@/lib/env'
|
|
import { MetadataRoute } from 'next'
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: env.NEXT_PUBLIC_BASE_URL,
|
|
lastModified: new Date(),
|
|
changeFrequency: 'yearly',
|
|
priority: 1,
|
|
},
|
|
]
|
|
}
|