mirror of
https://github.com/arthur-pbty/qrcode.git
synced 2026-06-03 15:07:36 +02:00
15 lines
289 B
TypeScript
15 lines
289 B
TypeScript
import { MetadataRoute } from 'next';
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: '*',
|
|
allow: '/',
|
|
disallow: ['/api/', '/_next/'],
|
|
},
|
|
],
|
|
sitemap: 'https://qrcode.arthurp.fr/sitemap.xml',
|
|
};
|
|
}
|