Tips on deploying observable framework apps

Hi All,

I recently switched from Netlify to Cloudflare Pages. Thought it might make sense to share my experience and see if others have tips.

My main motivation for switching was bandwidth limits. Netlify limits its free plans to 100GB of bandwidth, while the free tier of Cloudflare Pages provides unlimited bandwidth!

The one downside of switching to Cloudflare Pages is they limit files to a maximum size of 25 MB. This ended up being a blocker for using DuckDB-Wasm since that file is about 31 MBs! I decided to work around that issue by using SQLite and Arquero instead.

Overall, I’ve been very happy with Cloudflare Pages, but curious to hear what others are using.

Andrew