후아 이틀 삽질한 내용....
1. Error: only one instance of babel-polyfill is allowed
babel을 전역변수로 단 한 번의 정의만 가능하므로, 어딘가에 너는 babel-polyfill을 import 하고 있을 것이야..
2. ReferenceError: regeneratorRuntime is not defined
async function myFunc(){} -> const myFunc = async function(){}
3. Runtime Error 문제(.babelrc)
@babel/transform-runtime 플러그인 추가
{
"presets": [["@babel/preset-env"]],
"plugins": [["@babel/transform-runtime"]],
"ignore": ["src/assets/", "src/static", "src/webpack.config.js"]
}
참고
'잡부생활 > 프로그래밍' 카테고리의 다른 글
CSS flex, grid 정리 (0) | 2019.11.15 |
---|---|
ES6, 7, 8 정리 (0) | 2019.08.16 |
Node Callback / Promise / async&await (0) | 2019.04.10 |