Async/await Referenceerror: Can't Find Variable: Regeneratorruntime
I've been searching a lot on this error and found that is related to babel that cannot generate the code related to my async/await calls. As I don't want to remove them, I would li
Solution 1:
When I met the similar problem, I used polyills from core-js/modules/
folder, and used entry key in webpack config as
{ entry: ['core-js/modules/%polyfill_name%', '%path_to_entry_file%',...] }
Post a Comment for "Async/await Referenceerror: Can't Find Variable: Regeneratorruntime"