How to include assets from external library into Angular CLI project
I am trying below but this does not work,
\"assets\": [
\"../node_modules/
Since angular 6 the config has changed slightly. To achieve this now, change the assets property of the respective builder in angular.json (beware, there are at least two relevant builders in the architects build and test!)
"assets": [
"src/favicon.ico",
"src/assets",
{
"glob": "**/*",
"input": "./node_modules//",
"output": "./assets/"
},