あいつの日誌β

働きながら旅しています。

2019-10-24から1日間の記事一覧

parcel src/index.html 的なコマンドを実行すると Cannot find module 'babel-plugin-babel-root-slash-import' と言われる場合

こんな感じの .babelrc を用意してあげると良いでしょう。 { "plugins": [ ["module-resolver", { "root": ["./src"] }] ] } あとそれから Uncaught ReferenceError: regeneratorRuntime is not defined とか言われたら require('babel-polyfill') とかして…