I am running on ghost 3.38.3 and my package.json file consists the following configuration.
"config": {
"posts_per_page": 25,
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1000
},
"xl": {
"width": 2000
}
}
}
When I update the featured image it gets updated and I can see it on my web server https://<mysite.com>/content/images/2020/12/image-name.png
But when it is published, ghost calls the featured image from https://<mysite.com>/content/images/size/w1000/2020/12/image-name.png
The specified folder structure is not there and gives 404 on the browser console. I am not sure what I am missing here. Your help is greatly appreciated.