16 lines
371 B
TypeScript
16 lines
371 B
TypeScript
import type { MetadataRoute } from 'next'
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: '*',
|
|
allow: '/',
|
|
disallow: ['/api/', '/dashboard', '/superadmin', '/registrierung', '/login'],
|
|
},
|
|
],
|
|
sitemap: 'https://innungsapp.com/sitemap.xml',
|
|
host: 'https://innungsapp.com',
|
|
}
|
|
}
|