1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-18 00:10:12 -07:00
deskreen/app/utils/isProduction.ts
2020-09-24 19:06:07 +03:00

9 lines
263 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
}