This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/utils/robots.js
2021-11-08 22:46:30 -08:00

12 lines
239 B
JavaScript

// @flow
import { type Context } from "koa";
const DISALLOW_ROBOTS = `User-agent: *
Disallow: /`;
export const robotsResponse = (ctx: Context): ?string => {
if (process.env.DEPLOYMENT !== "hosted") {
return DISALLOW_ROBOTS;
}
};