We wanted to clarify the usage of the npm install command and the --force flag in your project. The npm install command is used to install all the dependencies listed in the package.json file of your project, including both regular dependencies and devDependencies. If during the installation process, any of the dependencies fail to install due to network issues or missing packages, you may use the --force flag along with the npm install command to force the installation of the dependencies. This will allow npm to fetch remote resources, even if a local copy exists on the disk. However, it is important to note that using the --force flag should be used with caution. This is because it can overwrite any previously downloaded dependencies and may lead to unexpected behavior in your project.
npm install --force
"In case you don't want to use npm install --force, remove above plugins and install directly using the npm install command."