Side note on assets

Normally with a site that I'm doing for work I would want to compile the css and js locally (at least not production ready versions), usually that would be a bad idea in a team, you'd want the compilation to occur just before deployment, probably in CI if you have that.

Here though this is my personal blog and to be honest it's probably only ever going to have like two people read it and one of them will be me.

So I could compile them locally and commit them or just chuck --

php please cache:clear
npm ci && npm run production

-- into the forge deploy script.

Or I could alternatively keep it all local and deploy to Vercel or Netlify using the Statamic SSG. In fact I could use the SSG on the current Forge setup the site currently sits on, although it has to be said that Vercel is certainly something that I am interested in, so may well look at doing that at some later point