Set automatically
The constant __DEV__ is set automatically.
Production
Building the bundle via --dev=false should unset __DEV__.
Usage
if (__DEV__) {
console.log('Development');
} else {
console.log('Production');
}
The constant __DEV__ is set automatically.
Building the bundle via --dev=false should unset __DEV__.
if (__DEV__) {
console.log('Development');
} else {
console.log('Production');
}