| import type { MetadataRoute } from 'next' | |
| export default function robots(): MetadataRoute.Robots { | |
| return { | |
| rules: { | |
| userAgent: '*', | |
| allow: '/', | |
| disallow: '/private/', | |
| }, | |
| sitemap: 'https://acme.com/sitemap.xml', | |
| } | |
| } | |
| import type { MetadataRoute } from 'next' | |
| export default function robots(): MetadataRoute.Robots { | |
| return { | |
| rules: { | |
| userAgent: '*', | |
| allow: '/', | |
| disallow: '/private/', | |
| }, | |
| sitemap: 'https://acme.com/sitemap.xml', | |
| } | |
| } | |