我正在尝试部署使用 create-react-app 创建的应用程序。它在本地工作得很好。但是在 Heroku 上部署时,会显示以下错误:
SecurityError: The operation is insecure.
我正在使用 Pusher 库制作一个反应式记事本,但我看不到如何在 heroku 上正确部署它。我在 Firefox、chrome 和 edge 上试过,但似乎没有用。
它表明问题出在 /app/webpack/bootstrap 中。
783 |
784 | // Execute the module function
> 785 | modules[moduleId].call(module.exports, module, module.exports, hotCreateRequire(moduleId));
| ^ 786 |
787 | // Flag the module as loaded
788 | module.l = true;```
Any ideas on how to solve this error would be much appreciated.