I have a problem with displaying background img in angular. I am using function with ngStyle in html tag and it works fine, but when i upload whole project on github pages imgs with this method doesn't show up. Other images that i add with img tag works fine. Could help me fix it ?
Code:
getHeaderBackgroundImg() {
return `url(/assets/images/4.jpg)`
}
<header [ngStyle]="{'background-image': getHeaderBackgroundImg(), 'background-position' : 'center', 'height' : '950px', 'width' : '100%'}" class="main__container"></header>