I have create a angular workspace which host multiple angular projects and libraries.
In workspace I have a shared library which contains all assets(images and logos).
"assets": [
"projects/xxx-workspace/src/favicon.ico",
"projects/xxx-workspace/src/assets",
"projects/xxx-shared/src/lib/images"
]
"projects/xxx-shared/src/lib/images"
But while building the application it throws error:-
asset path must start with the project source root.
What is the expected configuration to achieve this.