I am relatively new to using Ionic and I'm currently working on setting up a gradient image as the background for the welcome page
of my app. While I've been successful in loading images from the assets/imgs
folder on other pages, I'm facing difficulty with the welcome page
. When I try setting the background to a solid color, it works perfectly fine. Any suggestions on how to solve this issue?
Error Message: Failed to load resource: the server responded with a status of 404 (Not Found)
page-welcome {
#welcome{
// background: color($colors, dark);
background-image: url("assets/imgs/gradient.jpg");
h1{
font-size: 52px;
margin-top:50px
}
.marginTop{
margin-top:150px;
}
.logo{
height: 100px;
}
}
}