Andy
09/18/2024, 7:25 PMmedia
folder included in my project. User error!!![/EDIT]
Current Issue - Slimsy is only generating ONE image on my "production" site at the first "WidthStep": 80
size - but no others. Meanwhile my development site has many versions for eash Step size.
Slimsy is only setup in my appsettings.js
- so I'm not overriding it anywhere. The ONLY changes are between development and a "Production" IIS version of the site. All other items are the same.
I feel I'm missing something obvious but I'm not seeing anything.Andy
09/18/2024, 8:41 PM/wwwroot/media
folder not being included in the BUILD process. In my VisualStudio - the media folder didn't exist. Therefore it seems no "images" to be include as content and thus not imported.
Once the image files "exist" and I re-run the import - I again get all the expected steps!
So I added the following to my *.csproj
file:
<ItemGroup>
<Content Include="wwwroot\media\**\*.*" />
</ItemGroup>