diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-12-19 14:43:27 +0100 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-12-19 14:43:27 +0100 |
| commit | bb6624513223093219b595109d96d50291cabc0d (patch) | |
| tree | b959c4b1135985ab4756e72666ff81626277e71a /robots-txt.config.ts | |
| parent | c25a63106441bf0c0384a3a4ea1f373e27b63e60 (diff) | |
Add fediverse blogpost
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; |
