mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-15 20:16:12 +01:00
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
import { env } from '@/lib/env'
|
|
import { MetadataRoute } from 'next'
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
disallow: '/groups/',
|
|
},
|
|
sitemap: `${env.NEXT_PUBLIC_BASE_URL}/sitemap.xml`,
|
|
}
|
|
}
|