This week I designed & built a new 11ty site to support an advocacy effort among primarily Canadian zine creators opting out of a major Canadian zine festival due to the founder's genocide denial. It's called Can't Zine.

This is the first Eleventy site I've hosted on Cloudflare Pages, and there were a couple small hiccups to work out. Overall though, the setup process was pretty painless, and now that I have these two issues figured out, I think it will be smooth sailing to move the rest of my sites over there!

# Decap CMS

This site needed a CMS backend of some kind so that my zine-world co-conspirator could add to the site's creator listing without much fuss. I like Decap CMS (formerly called Netlify CMS), which gives you a nice lil graphic frontend to add content to your site. The new content is committed directly to your repo as plain text files, which 11ty is a champ at using as data to create pages. The CMS is locked behind an authentication system so only approved contributors can access it.

I've used Decap on several other projects before, but only on sites hosted on Netlify using Netlify Identity to do the auth. As you might guess, the project formerly called Netlify CMS has great docs on how to use it when hosting on Netlify. I knew it was probably possible to host elsewhere though and use a different identity provider, but wasn't sure quite how.

I ended up using Netlify-CMS-Cloudflare-Pages by i40west to set up GitHub-based oauth for Decap CMS as a Cloudflare Pages function that's part of my site. I followed the readme instructions and it worked perfectly out of the box basically. There are other repos (and many forks of the same repos...) that do a similar thing using Cloudflare Workers; I liked that this one was coupled as a function that I could easily keep in the same repo so everything I need to run the site is in one place.

# Very Aggressive Asset Caching

I learned that Cloudflare will cache your non-html assets overly aggressively if you don't set a query string on them - after every deploy, my site kept showing an old version of the CSS with a very obvious & embarrassing visual bug until I clicked "purge cache" in Cloudflare, and then it would come back again after the next deploy anyways. Ahh!

I added the plugin Eleventy Auto Cache Buster which promised to add query strings to all my assets in the site without any extra work (or changing what was in my template files at all), and that seems to have solved the problem for good.

I've never dealt with this before on Netlify or worried about query strings on assets there for my simple, no-bundler sites, so this was a frustrating surprise! I'm sure it is great for making my site speedy-quick for end users, but I would prefer a miniscule-ly slower site that always looks presentable over a very fast but embarrassing site!

But now that I know about it, I will make sure any other sites I put on Cloudflare use the Auto Cache Buster plugin, and go back to not thinking about this at all, hopefully.