<@UD17D4K8W> I tried upgrading to Orchid 0.14.0 bu...
# strikt
r
@Casey Brooks I tried upgrading to Orchid 0.14.0 but the when I do the
orchidServe
task the images all get 404s
0.13.0 exhibits the same problem
c
There were some major improvements to asset management, but also included breaking changes outlined in the 0.13.0 release notes https://github.com/JavaEden/Orchid/releases/tag/0.13.0
You’ll need to update the places using images to use the
asset
filter. for example, use
Copy code
<img
  src="{{ 'assets/images/made-with-bulma--semiblack.png' | asset }}"
  alt="Bulma"
  width="171"
  height="32">
instead of
Copy code
<img
  src="{{ site.baseUrl }}/assets/images/made-with-bulma--semiblack.png"
  alt="Bulma"
  width="171"
  height="32">
You can also do basic image manipulation like resizing/cropping now, and using the new
asset
functions will ensure these images are rendered properly and the correct file URLs are used. Docs here https://orchid.netlify.com/wiki/user-manual/themes/thumbnails
r
Awesome. All working now. Only 4 images on the site!
🎉 1