mirror of
https://github.com/outline/outline.git
synced 2025-03-14 10:07:11 +00:00
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
import env from "~/env";
|
|
|
|
/**
|
|
* True if the current installation is the cloud hosted version at getoutline.com
|
|
*/
|
|
const isCloudHosted = [
|
|
"https://app.getoutline.com",
|
|
"https://app.outline.dev",
|
|
"https://app.outline.dev:3000",
|
|
].includes(env.URL);
|
|
|
|
export default isCloudHosted;
|