Skip to content

Commit 2b86296

Browse files
committed
fix: noindex -> none which means noindex, nofollow
1 parent 9014f1e commit 2b86296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ class API {
163163
// X-Robots-Tag
164164
// <https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag>
165165
app.use((ctx, next) => {
166-
ctx.set('X-Robots-Tag', 'noindex');
166+
ctx.set('X-Robots-Tag', 'none');
167167
return next();
168168
});
169169

0 commit comments

Comments
 (0)