diff options
Diffstat (limited to 'robots-txt.config.ts')
| -rw-r--r-- | robots-txt.config.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/robots-txt.config.ts b/robots-txt.config.ts index 85a8b0e..1ee4bf8 100644 --- a/robots-txt.config.ts +++ b/robots-txt.config.ts @@ -1,13 +1,13 @@ -import type { RobotsTxtOptions } from 'astro-robots-txt'; +import type { RobotsTxtOptions } from "astro-robots-txt"; const robotsConfig: RobotsTxtOptions = { - policy: [ - { - userAgent: '*', - disallow: ['/micro/', '/micro'], - }, - ], - sitemapBaseFileName: 'sitemap-index', // default 'sitemap-index' + policy: [ + { + userAgent: "*", + disallow: ["/micro/", "/micro"], + }, + ], + sitemapBaseFileName: "sitemap-index", // default 'sitemap-index' }; export default robotsConfig; |
