mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-18 00:10:12 -07:00
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
export default function isProduction() {
|
|
return (
|
|
process.env.NODE_ENV === 'production' &&
|
|
process.env.RUN_MODE !== 'dev' &&
|
|
process.env.RUN_MODE !== 'test'
|
|
);
|
|
// return true; // for animations and other things debugging as in production mode
|
|
// return false;
|
|
}
|