18 lines
351 B
TypeScript
18 lines
351 B
TypeScript
|
|
import { MetadataRoute } from 'next';
|
||
|
|
|
||
|
|
export default function robots(): MetadataRoute.Robots {
|
||
|
|
return {
|
||
|
|
rules: {
|
||
|
|
userAgent: '*',
|
||
|
|
allow: '/',
|
||
|
|
disallow: [
|
||
|
|
'/api/',
|
||
|
|
'/checkout/success',
|
||
|
|
'/checkout/cancel',
|
||
|
|
'/mobile-app',
|
||
|
|
],
|
||
|
|
},
|
||
|
|
sitemap: 'https://puffinoffset.com/sitemap.xml',
|
||
|
|
};
|
||
|
|
}
|