My Ionic 3 Angular app uses a background image defined in the following way:
app.scss
ion-content{
background-image: url('/assets/images/dummy_bg.jpg');
}
While this setup works fine on desktop browsers, I'm facing an issue where the background image does not render properly on my iPhone when deployed.
I've ensured that the size for my iPhone 7 Plus is set to 1242x2208 pixels.
Is there something else I need to do in order to make it work on my iPhone?