During a small project I was working on, I decided to add a background image to another image using CSS. Here is the code snippet:
.child2 img {
width: 200px;
height: 200px;
border-radius: 50%;
background-image: url('./assets/images/imageborder.png');
}
However, when trying to run my Angular webpage, an error message appeared:
Error: Cannot resolve ./assets/images/imageborder.png in /Users/[my name]/sites/Project A/src/app/home
What steps should I take to resolve this issue?