Spaces:
Sleeping
Sleeping
| 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`, | |
| } | |
| } | |