jakoblind / webpack-autoconf

A tool to create frontend apps using webpack, Parcel or Snowpack
https://createapp.dev/
875 stars 78 forks source link

regeneratorRuntime is not defined with Babel 7 (cant use async function) #156

Open Moussack opened 3 years ago

Moussack commented 3 years ago

need to install these two dependencies to fix :

in babel.rc

{
    "presets": ["@babel/preset-env"],
    "plugins": [
        ["@babel/transform-runtime"]
    ]
}