12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import type { MetadataRoute } from 'next';
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
},
|
|
sitemap: 'https://animate-ui.com/sitemap.xml',
|
|
};
|
|
}
|