We have developed a ReactJS web application and we want to host this application on IIS. The application successfully runs on IIS. Now, it is time to upgrade the application. Instead of manually copying the files to IIS folder, we want to simplify the deployment process.
How can we deploy the build package that is generated using command npm run build onto IIS web site using WebDeploy protocol?
(Note: IIS has already been configured to accept and successfully executes WebDeploy requests, such as Visual Studio MVC project outputs.)
