mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
import type { MetadataRoute } from 'next';
|
|
|
|
import { getBaseUrl } from '@/utils/Helpers';
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
},
|
|
sitemap: `${getBaseUrl()}/sitemap.xml`,
|
|
};
|
|
}
|