Files
Webserver/app/robots.ts

12 lines
255 B
TypeScript
Raw Permalink Normal View History

2026-02-08 23:18:21 -05:00
import type { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: '*',
allow: '/',
},
sitemap: 'https://akkolli.net/sitemap.xml',
};
}