We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f754fb commit a8537bcCopy full SHA for a8537bc
src/plugins/serial/base-serial.js
@@ -34,7 +34,9 @@ class BaseSerial extends EventEmitter {
34
this.connected = false;
35
this.implementation = 'basic';
36
this.serial = null;
37
- this.DEBUG = true;
+ this.DEBUG = !!process.env.VUE_APP_DEBUG;
38
+ // eslint-disable-next-line no-console
39
+ // console.log('debug', this.DEBUG);
40
}
41
42
install(Vue) {
0 commit comments