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 tried to rebuild the example using these commands npm install npm run-script build
It failed with the error "Cannot find module 'babel-runtime/regenerator" which I fixed by npm install --save-dev babel-runtime
Afterwhich, I run the example through a python http server python3 -m http.server and gotten the this error on the browser console.
Uncaught SyntaxError: Identifier 'Buffer' has already been declared
at s (bundle.js:1)
at bundle.js:1
at Object. (bundle.js:4)
at Object.1.buffer (bundle.js:355)
at s (bundle.js:1)
at e (bundle.js:1)
at bundle.js:1
BTW, if I use the existing bundle.js (and not rebuild it) - it works.
The text was updated successfully, but these errors were encountered:
Hi
I tried to rebuild the example using these commands
npm install
npm run-script build
It failed with the error "Cannot find module 'babel-runtime/regenerator" which I fixed by
npm install --save-dev babel-runtime
Afterwhich, I run the example through a python http server
python3 -m http.server
and gotten the this error on the browser console.Uncaught SyntaxError: Identifier 'Buffer' has already been declared
at s (bundle.js:1)
at bundle.js:1
at Object. (bundle.js:4)
at Object.1.buffer (bundle.js:355)
at s (bundle.js:1)
at e (bundle.js:1)
at bundle.js:1
BTW, if I use the existing bundle.js (and not rebuild it) - it works.
The text was updated successfully, but these errors were encountered: