-
Notifications
You must be signed in to change notification settings - Fork 394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
image processing with Gatsby #1063
Comments
this can be done independently and should resolve the problem with |
I guess this is related to the Gatsby |
We currently use an older version of the Gatsby image plugins due to issues between their newer caching API and our build process. There's been a lot of iterations on those plugins since then, so it may be worth trying an update in a PR to see if the cache behavior improvements also fixed our issue. If we are able to use the latest versions of those plugins, we'll get access to a slew of new features like that greatly improve DX like lazy queries/images and true parallel processing. I can check into it when I get some time. |
@rogermparent can it be considered done? |
Yeah, this ticket specifically seems like it can be considered long since done after the Next -> Gatsby migration. |
When we used Next.js we just placed all assets to the
/static/img/
folder and inserted in html by url.This approach works, but have some drawbacks:
Now, after migration we have better ways to do it:
Also, as we don't need to make image folder public with this approach, we should move images closer to the components or markdown files that use them.
The text was updated successfully, but these errors were encountered: