webpack-autoconf
webpack-autoconf copied to clipboard
regeneratorRuntime is not defined with Babel 7 (cant use async function)
need to install these two dependencies to fix :
- @babel/runtime --save
- @babel/plugin-transform-runtime --save-dev
in babel.rc
{
"presets": ["@babel/preset-env"],
"plugins": [
["@babel/transform-runtime"]
]
}