Hello, friends! Now as I can see, Hugo has built-in Image Processing ability, so I can compress my .jpg (why not .png also?), generate webP, and srcset (with image resizing) too.
So now it’s nearly does the same that Gatsby Image component does, right?
I’m just worried, about what is build time will been, when I process a bunch of images from my site with Hugo? Build time will increase much more? For example, Gatsby’s build time increases dramatically, when you process the images with Gatsby Image component.
Depends. If you make sure you keep a copy of the resources directory that is created when building, then images are only rebuilt if something changes, so the first time building will take longer than plain pages, but after that it’s not a big difference.
If you are using Netlify there is a plugin that allows you to avoid storing the resources directory in your repo, and stores it in a cache on Netlify’s service. If you do store resources in your repo you will almost certainly want to use Git LFS rather than store in the regular git repo.