Trying to add a background image to my angular application.
home-component.html
<body>
<div style="text-align:center;" class="backgroundimage">
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
}
.backgroundimage {
background-image: url('/frontend/src/assets/logo');
background-size: cover;
background-repeat: no-repeat;
width: 200px;
height: 100vh;
}
</style>
Encountering a 404 error in the browser's inspect element network tab.
Failed to load resource: the server responded with a status of 404(Not Found)
Any suggestions on how to resolve this issue?