Files
klz-cables.com/app/robots.ts
Marc Mintel 3b03572fb0
Some checks failed
Build & Deploy KLZ Cables / deploy (push) Has been cancelled
deploy
2026-01-25 17:51:28 +01:00

19 lines
420 B
TypeScript

import { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: '*',
allow: '/',
disallow: ['/api/', '/health/'],
},
{
userAgent: ['GPTBot', 'ClaudeBot', 'PerplexityBot', 'Google-Extended', 'OAI-SearchBot'],
allow: '/',
}
],
sitemap: 'https://klz-cables.com/sitemap.xml',
};
}