@ keara_fallon Cannot thank you enough for this. The solution for me was not exactly the same but the gist of it was dead-on. FWIW for anyone else running into this, I am running Strapi Community Edition 4.1.1. The solution for me is below:
- First, locate the file To fix this, open the file
./node_modules/@strapi/admin/admin/src/index.jsand add the following line at the top of the file:import 'regenerator-runtime/runtime'; - Then, in the terminal/cli, run
yarn add regenerator-runtime. Then runyarn buildthenyarn developto start the app.
Ideally you don’t want to modify the core files but that was the only way I could find to fix the issue. I will try to create a Pull Request in the Strapi github repo to submit the fix to the official repo.