rsnext/test/e2e/app-dir/metadata/app/verification/page.tsx
Jiachi Liu 41e2613aca
Update robots meta and add verification rendering (#45409)
Follow up for: #45237

* Adding more fields for robots meta, most related to googlebot
* Add `me` and `yandex` field and render for verification field
2023-01-30 20:49:30 +00:00

14 lines
230 B
TypeScript

export default function page() {
return 'verification'
}
export const metadata = {
verification: {
google: 'google',
yandex: 'yandex',
yahoo: 'yahoo',
other: {
me: ['my-email', 'my-link'],
},
},
}