Files
outline/server/utils/isCloudHosted.ts

9 lines
204 B
TypeScript

import env from "@server/env";
/**
* True if the current installation is the cloud hosted version at getoutline.com
*/
const isCloudHosted = env.DEPLOYMENT === "hosted";
export default isCloudHosted;