I have a test photos website Test Folio which is deployed with vercel.
When resources/**
is not included in the file .gitignore
everything is going well and the deployment is successful (note that 98 images are processed trough the site building).
When resources/**
is included in the file .gitignore
I got the following error in the deployment issue :
ERROR 2023/05/07 13:59:41 render of "page" failed: "/vercel/path0/themes/folio/layouts/_default/single.html:14:5": execute of template failed: template: _default/single.html:14:5: executing "main" at <partial "gallery" .>: error calling partial: partial "gallery" timed out after 30s. This is most likely due to infinite recursion. If this is just a slow template, you can try to increase the 'timeout' config setting.
Note that I already increase the timeout value to timeout = 100000
That is the only difference between successfull deployment and failed deployment.
Would someone mind explain me the reason for this particular behaviour and how to solve it if possible