I am currently using inline styles to set the background image on my website.
<div [ngStyle]="{background: 'url(' + section.backgroundSrc + ') no-repeat'}">
But I want to find a cleaner solution, perhaps dynamically setting the path in an external stylesheet with Angular. I am unsure of how to accomplish this though.