hi folks, we are integrating kurento into a webpack js project but am getting the following in my chrome console
KurentoClient.js:46 Uncaught TypeError: Cannot read property 'MediaObject' of undefined
the error is from KurentoClient.js .. on the require call to core
var MediaObject = require('kurento-client-core').abstracts.MediaObject;
The npm package.json deps look like this
"dependencies": {
"kurento-client": "6.6.0",
"kurento-utils": "^6.6.1"
}
the includes in my js file look like this ..
var kurentoClientCore = require('kurento-client-core');
var kurentoClient = require('kurento-client');
var kurentoUtils = require('kurento-utils');
let me know if you need anything else .. I'm still poking around
thanks,
C