Spaces:
Sleeping
Sleeping
File size: 300 Bytes
cd3bf8b e5e860c be7f4de cd3bf8b be7f4de cd3bf8b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import { MetadataRoute } from 'next'
export default function robots(): MetadataRoute.Robots {
const baseUrl = 'https://vocalbee.vercel.app';
return {
rules: {
userAgent: '*',
allow: '/',
disallow: ['/api/', '/_next/'],
},
sitemap: `${baseUrl}/sitemap.xml`,
}
}
|