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 upstarterAdd the remote to upstream:
git remote add upstream git@github.com:gatsbyjs/gatsby-starter-blog.gitFetch the upstream:
git fetch upstreamThen when you merge it use the --allow-unrelated-histories argument:
git merge upstream/master --allow-unrelated-historiesYou'll most likely have conflicts to resolve, but after that you can merge it back into master:
git checkout master
git merge upstarterThanks for reading! 😁Comments
Related Posts
nuxt
google-fonts
netlify
gatsby
google-fonts
web-fonts
A guide to asynchronously load Google Fonts in Gatsby using gatsby-plugin-web-font-loader
tailwindcss
ai
web-development
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.
react
typescript
tailwind
zustand
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.
next.js
typescript
tailwind
supabase


