How to fix webpack-pwa-manifest@4.2.0 and minimist vulnerability. I tried by deleting node/modules and package-lock.json and do a fresh npm install but I have the same issue, any feedback is really appreciated.
Attached screenshots.
Actually, the issue is on minimist
(webpack-pwa-manifest
submodule), and it's on version 0.0.8
. You can install the newest version of this module using resolution on package.json until the webpack-pwa-manifest
update this module...
To add this resolution you just need to add this on you package.json:
"resolutions": { "minimist": ">=1.2.3" }
And run:
npx npm-force-resolutions && npm install