slimsy generates only 1 image in production - v13 ...
# help-with-umbraco
a
I feel I'm missing something obvious - as I'm testing publishing a development site to a "Production" aspect - but on my local IIS. I've got the site up. First issue - with USync - while the image (placeholders) came over - the actual image files didn't. But a full copy/paste from development got that there [EDIT]NOPE: Not uSync - I didn't have the
media
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.
I figured this out - it is NOT a Slimsy nor is it a USync issue - but a "compile" issue - as it was due to my
/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:
Copy code
<ItemGroup>
    <Content Include="wwwroot\media\**\*.*" />
  </ItemGroup>
2 Views