My production build of my Angular2 app using Angular CLI with WebPack needs some files copied to the dist folder so I can deploy the app to our production (IIS) server. Specifically, I need web.config and favicon.ico files copied from src folder to dist folder. The web.config file is necessary so I can apply URL Rewrite rules for html5 routes.
I'm assuming we need to add these static files to angular-cli.json file, but not sure where to list these files so they are included in production build.
Thanks in advance.