Bipin Bhandari

Results 8 comments of Bipin Bhandari

I am getting errors when integrating material-ui into the boilerplate. These errors occur on hot reload and persists until server restart

This issue seems to be fixed by settings `moment=moment.default` in moment-timezone.js line 20 ``` }(this, function (moment) { "use strict"; moment=moment.default; ``` Might be issue with import. Can anyone fix?

@a-ski did you manage to find a solution for this?

Now getting this error:

I am also facing the same problem. @joshterrill have you figured out the solution yet?

I am trying to send stream of webcam videos (stream in following snippet): ``` navigator.getUserMedia({ 'audio': false, 'video': true }, function (stream) { }) ``` to server. How to accomplish...