Files
outline/app/utils/isCloudHosted.ts
2022-05-21 13:34:52 +01:00

9 lines
198 B
TypeScript

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