This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2024-10-08 15:32:02 +01:00

7 lines
124 B
TypeScript

/**
* Checks if we're in production
*/
export function isProduction() {
return process.env.NODE_ENV === "production";
}