Parcel dev서버로 작업 중 async await을 사용하자 문제가 발생했다 Uncaught ReferenceError: regeneratorRuntime is not defined 구글링의 결과, 최신(?) 문법인 async를 사용했기 때문에 등장한 문제인 것 같다. async를 사용한 파일에서 babel-polyfill을 import하라고 했으나.... 아마도 이것은 이전 해결방식이었나보다 Babel 7.4.0 이상을 사용하는 경우 위의 polyfill 방법은 해결되지 않는다..! 그래서 아래 방법으로 해결했다 npm install regenerator-runtime -D 1. 일단 npm으로 regenerator-runtime 설치 2. package.json에서(package-lock.jso..