blob: 4a2fe7a10d9d9872aebece9c6dee73a59fd52038 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import type { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: '*',
allow: '/',
},
sitemap: 'https://free-invoices.org/sitemap.xml',
};
}
|