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