Angular 13 with WebPack 5, cannot fix polyfill error #1178
-
Hi, I'm trying to install Angular-Slickgrid v4.3.1 using Angular v13.3.11. Here's the error in detail:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Well I don't think you followed all the steps, this error is from WebPack 5 itself (not from Angular-Slickgrid) and the steps to fix it is shown in the HOWTO at step 12 it's also mentioned in main readme page and is also mentioned in the Version Compatibility Wiki page Follow these instructions and if that doesn't work then search on the internet because like I said this is a WebPack 5 breaking change error and is unrelated to Angualr-Slickgrid. It's basically polyfills that were removed in WebPack 5 and must be installed manually now. The instructions I have is for |
Beta Was this translation helpful? Give feedback.
Well I don't think you followed all the steps, this error is from WebPack 5 itself (not from Angular-Slickgrid) and the steps to fix it is shown in the HOWTO at step 12
https://github.com/ghiscoding/angular-slickgrid/wiki/HOWTO---Step-by-Step#12-angular-12-with-webpack-5---how-to-fix-polyfill-error
it's also mentioned in main readme page
https://github.com/ghiscoding/Angular-Slickgrid#angular-12-with-webpack-5---how-to-fix-polyfill-error
and is also mentioned in the Version Compatibility Wiki page
https://github.com/ghiscoding/angular-slickgrid/wiki/Versions-Compatibility-Table#angular-12-with-webpack-5---how-to-fix-polyfill-error
Follow these instructions and if that doesn't work then se…