Yes, you can integrate a Gatsby-powered directory with Airtable into Webflow using HTML embeds or reverse proxy techniques. However, Webflow does not support direct rewrites like Vercel or Cloudflare Pages. Here are your key options:
Host your Gatsby site on a platform like Vercel, Netlify, or Cloudflare Pages.
Use an iframe in Webflow by embedding the hosted page using:
Embed component: Add an <iframe>
pointing to the Gatsby directory.
Custom Code in Webflow: Use the following basic example:
<iframe src="https://yourgatsbydirectory.com" width="100%" height="800px"></iframe>
This method is simple, but the iframe content will not inherit Webflow styles.
A reverse proxy can make your Gatsby directory appear under your Webflow domain.
Limitations: Webflow does not provide built-in proxying, but if your hosting provider (e.g., Vercel) allows it, you can set up something like:
Example with Vercel rewrites (in vercel.json
)
```json
{
"rewrites": [
{
"source": "/directory/:path*",
"destination": "https://yourgatsbydirectory.com/:path*"
}
]
}
```
This method requires hosting outside of Webflow.
<iframe>
.Since Webflow doesn’t support request rewriting internally, the best workaround is embedding or external hosting with a reverse proxy.