How to fix Google fonts not loading in Nuxt static sites deployed on Netlify
How to upgrade Gatsby starter blog (or any other gatsby starter template)
Benjamin Looi / April 26, 2021
Use good git hygiene and create a new branch to merge the upstream so you can test for breaking changes:
git checkout -b upstarter
Add the remote to upstream:
git remote add upstream git@github.com:gatsbyjs/gatsby-starter-blog.git
Fetch the upstream:
git fetch upstream
Then when you merge it use the --allow-unrelated-histories argument:
git merge upstream/master --allow-unrelated-histories
You'll most likely have conflicts to resolve, but after that you can merge it back into master:
git checkout master
git merge upstarterComments
Related Posts
A guide to asynchronously load Google Fonts in Gatsby using gatsby-plugin-web-font-loader
TailwindCSS v4 changed the setup flow. AI coding agents still reach for old config files and deprecated commands, so developers need to check the official docs before accepting setup code.
Related Projects
Open Resume
A resume builder with AI coaching, server-side rendering, local state persistence, and Cloudflare Workers deployment.
The Eco Garden Cat Project
A bilingual cat welfare platform for a real colony in Cambodia, with TNVR tracking, KHQR donations, public ledgers, adoption inquiries, volunteer sign-ups, and an admin CMS.


