You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting error when use this library on browser.
Full error: Uncaught ReferenceError: window is not defined at Module../node_modules/current-device/es/index.js (index.js:4)
From the code of library - something is wrong with:
"var previousDevice = window.device;"
My code:
const device = require('current-device').default;
const isMobile = function () {
return device.mobile();
};
I use webpack 4 for building.
The text was updated successfully, but these errors were encountered:
I'm getting error when use this library on browser.
Full error: Uncaught ReferenceError: window is not defined at Module../node_modules/current-device/es/index.js (index.js:4)
From the code of library - something is wrong with:
"var previousDevice = window.device;"
My code:
const device = require('current-device').default;
const isMobile = function () {
return device.mobile();
};
I use webpack 4 for building.
The text was updated successfully, but these errors were encountered: