You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For security reasons, airtable has changed how their URLs are generated for attachments which we use for storing all images. The object structure looks the same, but the domain is different:
There are 2 issues to fix:
In deployment, this seems to be failing since next.config.js is using dl.airtable.com instead of v5.airtableusercontent.com.
URLs are no longer guaranteed to persist after 2 hours, so no pages can use SSG and refer to images hosted on Airtable. Pages using ISR should be ok since the change in URL will invalidate the next page cache and cause the page to re-generate with the new image URL. SSR is ideal here since the server will fetch the new URL on each page load (related to enable SSR on SIGs/Projects page by reducing number of airtable requests #59)
The text was updated successfully, but these errors were encountered:
For security reasons, airtable has changed how their URLs are generated for attachments which we use for storing all images. The object structure looks the same, but the domain is different:
There are 2 issues to fix:
dl.airtable.com
instead ofv5.airtableusercontent.com
.The text was updated successfully, but these errors were encountered: