12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import { MetadataRoute } from 'next';
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
disallow: ['/api/', '/_next/', '/static/'],
|
|
},
|
|
};
|
|
}
|