Is there a way to make angular-cli\'s ng buil --prod command to also copy a file/directory to the dist folder?
ng buil --prod
My project includes a \"server\" folder, and
On your angular-cli.json on assets object add the folders you want to include like:
Note : For Angular 9, this should be placed on angular.json file
"assets": [ "assets", "favicon.ico", "META-INF", "WEB-INF" ]