react-web-component
react-web-component copied to clipboard
Uncaught ReferenceError: regeneratorRuntime is not defined
It works when the component I create is a dumb component, but when I try to create a more complex react component I get "Uncaught ReferenceError: regeneratorRuntime is not defined" I've been searching and it seems there's an issue with babel, but I still don't understand which.
Could lend a hand on this?
This is not the lib fault. This is your build process.
IN your app
npm i --save regenerator-runtime
add the following import in your index.js
import "regenerator-runtime/runtime";