Ben
01/12/2024, 2:55 PMGetCropUrl()
parameters.
I can see the parameters in the browses web request but a full size image is returned. For example, the url /media/zjwn4khb/sabaj-k1-roto-lift-1.png?width=300&height=300&v=1da423f8e435080
is responding with a 1000x1000 unmodified image. I've also noticed that there's no \umbraco\data\TEMP\MediaCache
folder getting created either.
Any ideas?Ben
01/14/2024, 2:03 AMapp.UseStaticFiles();
got added to my startup.cs file. After comparing files between a fresh install and my project I noticed the v13 template doesn't have that line. Removing it resolves the image resizing issue. app.UseUmbraco()
also seems to resolve the issue as well for those that need it.Sebastiaan
01/15/2024, 10:28 AMBen
01/22/2024, 8:07 PM