1// Copy files from a location relative to the project's root to relative of the build output folder
2// In the example below I am copying all files from myfolder to the root dist folder.
3// For angular < 9 : angular-cli.json, for > 9: angular.json
4
5"assets": [
6 { "glob": "**/*", "input": "./assets/", "output": "./assets/" },
7 { "glob": "favicon.ico", "input": "./", "output": "./" },
8 { "glob": "**/*", "input": "../myfolder", "output": "./" }
9],
10