I'm having issues with my css file and attempting to achieve the following:
.login-wrapper {
background-image: url({{imagePath}});
}
Below is my component code:
export class LoginComponent implements OnInit {
imagePath: any = 'assets/discord-logo.png';
constructor() {}
ngOnInit() {}
}
Unfortunately, it's not working as expected.
Does anyone know how I can properly inject the 'imagePath' variable from my component into the css file?
Any assistance would be greatly appreciated!