Files
outline/app/env.ts
T
2025-12-28 08:56:32 -05:00

21 lines
500 B
TypeScript

declare global {
interface Window {
env: Record<string, any>;
}
}
if (!window.env) {
throw new Error(
"Config could not be be parsed. \nSee: https://docs.getoutline.com/s/hosting/doc/troubleshooting-HXckrzCqDJ#h-config-could-not-be-parsed"
);
}
const env: Record<string, any> = {
...window.env,
isDevelopment: window.env.ENVIRONMENT === "development",
isTest: window.env.ENVIRONMENT === "test",
isProduction: window.env.ENVIRONMENT === "production",
};
export default env;