mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-01 18:19:08 +00:00
Could not find existing sitemap file so created a new sitemap file with the listed url in the issue #66
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import type { MetadataRoute } from 'next'
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: 'https://www.surfsense.net/',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'yearly',
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: 'https://www.surfsense.net/privacy',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'monthly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: 'https://www.surfsense.net/terms',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'monthly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: 'https://www.surfsense.net/docs',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: 'https://www.surfsense.net/docs/installation',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: 'https://www.surfsense.net/docs/docker-installation',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: 'https://www.surfsense.net/docs/manual-installation',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.9,
|
|
},
|
|
]
|
|
}
|