Gatsby 盖茨比成百上千次生成同一个化身

Gatsby 盖茨比成百上千次生成同一个化身,gatsby,netlify,Gatsby,Netlify,我有一个博客,里面有近200篇文章,其中一个GraphQL查询获取了每篇文章的作者(姓名、信息、化身)。问题是,我只有两个作者在那里,但在建立网站时,盖茨比正在一遍又一遍地为每一篇文章重新创建那个化身。我可以在Netlify的控制台日志中看到: 8:13:53 PM: warning 8:13:53 PM: The requested width "120px" for a resolutions field for 8:13:53 PM:

我有一个博客,里面有近200篇文章,其中一个GraphQL查询获取了每篇文章的作者(姓名、信息、化身)。问题是,我只有两个作者在那里,但在建立网站时,盖茨比正在一遍又一遍地为每一篇文章重新创建那个化身。我可以在Netlify的控制台日志中看到:

8:13:53 PM: warning
8:13:53 PM:                  The requested width "120px" for a resolutions field for
8:13:53 PM:                  the file /opt/build/repo/static/images/uploads/authors/rick.png
8:13:53 PM:                  was larger than the actual image width of 96px!
8:13:53 PM:                  If possible, replace the current image with a larger one.
8:13:53 PM: warning
8:13:53 PM:                  The requested width "120px" for a resolutions field for
8:13:53 PM:                  the file /opt/build/repo/static/images/uploads/authors/rick.png
8:13:53 PM:                  was larger than the actual image width of 96px!
8:13:53 PM:                  If possible, replace the current image with a larger one.
8:13:53 PM: warning
8:13:53 PM:                  The requested width "120px" for a resolutions field for
8:13:53 PM:                  the file /opt/build/repo/static/images/uploads/authors/morty.png
8:13:53 PM:                  was larger than the actual image width of 96px!
8:13:53 PM:                  If possible, replace the current image with a larger one.
8:13:53 PM: warning
8:13:53 PM:                  The requested width "120px" for a resolutions field for
8:13:53 PM:                  the file /opt/build/repo/static/images/uploads/authors/rick.png
8:13:53 PM:                  was larger than the actual image width of 96px!
8:13:53 PM:                  If possible, replace the current image with a larger one.
显然,化身比期望的状态小,但我能看到阻塞的位置是件好事

我正在使用片段来查询数据,但我看不出这有什么关系:

哪个叫

你知道如何让盖茨比明白这个化身是在几毫秒前创建的,并重新使用它吗?我更关心build命令,因为在Netlify中99%的时间都是由于这个原因而超时的