Closed2

React LocationがVite環境で Uncaught ReferenceError: regeneratorRuntime is not defined エラーと出た場合の対処

Hi MORISHIGEHi MORISHIGE

久しぶりに新規vite環境にReact Locationをインストールしたところビルド時にエラーが出た。

Uncaught ReferenceError: regeneratorRuntime is not defined

issueにも上がっている模様。regenerator-runtimeのインストールとインポートが必要となる。

$ yarn add regenerator-runtime
$ yarn add -D @types/regenerator-runtime
main.tsx
import 'regenerator-runtime';

https://github.com/TanStack/react-location/issues/227

このスクラップは2022/03/16にクローズされました