blob: 85a8b0e682788e9885c1fee025cbf3e59ff2304b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { RobotsTxtOptions } from 'astro-robots-txt';
const robotsConfig: RobotsTxtOptions = {
policy: [
{
userAgent: '*',
disallow: ['/micro/', '/micro'],
},
],
sitemapBaseFileName: 'sitemap-index', // default 'sitemap-index'
};
export default robotsConfig;
|