elmeg-demo/frontend/app/robots.ts
fullsizemalt 2ac8719359
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run
chore: Launch polish (SEO, Config)
2025-12-24 18:21:12 -08:00

12 lines
290 B
TypeScript

import { MetadataRoute } from 'next'
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: '*',
allow: '/',
disallow: ['/admin/', '/api/'],
},
sitemap: 'https://elmeg.xyz/sitemap.xml',
}
}