We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When building a project with your boilerplate and using async / await functions those functions do not work.
I have solved the problem by adding the following dependency to package.json:
package.json
"devDependencies": { ... "babel-polyfill": "^6.26.0", ...
and also changing the following configuration in webpack.common.js configuration file:
webpack.common.js
entry: ['babel-polyfill', './index.js'], //babel polyfill needed for full compatibility with ES6 environments
If you find this information relevant, please, update your boilerplate. Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When building a project with your boilerplate and using async / await functions those functions do not work.
I have solved the problem by adding the following dependency to
package.json
:and also changing the following configuration in
webpack.common.js
configuration file:If you find this information relevant, please, update your boilerplate. Thank you!
The text was updated successfully, but these errors were encountered: