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
if (typeof process !== 'undefined' && process.type === 'renderer') {
module.exports = require('./browser.js');
} else {
module.exports = require('./node.js');
}
seems to choose to module.exports = require('./node.js') inside of a webpack build being built for the browser (even in dev mode, without using the define plugin)
The text was updated successfully, but these errors were encountered:
this code:
seems to choose to
module.exports = require('./node.js')
inside of a webpack build being built for the browser (even in dev mode, without using the define plugin)The text was updated successfully, but these errors were encountered: