Files
waggle-os/apps/www/app/robots.ts
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

20 lines
510 B
TypeScript

import type { MetadataRoute } from 'next';
/**
* Robots policy: index the marketing surface, keep auth/billing/internal
* design-QA routes out of the index. Served at /robots.txt by the App
* Router metadata convention.
*/
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: '*',
allow: '/',
disallow: ['/account', '/sign-in', '/sign-up', '/design/', '/api/'],
},
],
sitemap: 'https://waggle-os.ai/sitemap.xml',
};
}