##Performance improvement on my blog
I am trying different ways to improve the loading speed of my blog on mobile.
When I run my site on pagespeed insight, the current score on mobile is 46
This is the improvement suggestion
The Lab Data
First Contentful Paint 3.4 sSpeed Index 4.2 sTime to Interactive 12.2 sFirst Meaningful Paint 3.4 sFirst CPU Idle 9.9 sMax Potential First Input Delay 450 ms
Opportunity
Serve images in next-gen formats 1.5 sAvoid multiple page redirects 1.11 sEfficiently encode images 1.05 sProperly size images 0.45 sEliminate render-blocking resources 0.15 sRemove unused CSS 0.15 s
Diagnostics
Ensure text remains visible during webfont loadReduce the impact of third-party code Third-party code blocked the main thread for 1,720 msMinimize main-thread work 8.1 sReduce JavaScript execution time 5.4 sAvoid chaining critical requests 1 chain foundKeep request counts low and transfer sizes small 134 requests • 1,505 KB
After running the speed test on pagespeed insight, I am also running a free website SEO checker online as some of the issue might be overlapping, so fixing 1 problem will also fix the other in SEO.
Website Score 17/100All issuesMore than one H1 on page: 2 pagesH1 is missing: 1 pageCanonical to non-200: 14 pagesH1 = Title: 5 pagesTitle too long: 1 pageCanonical is missing: 6 pages301 Redirects: 14 pages
Both results are poor, I will have to spend a lot of time to fix it and bring the score up.
this can be done by installing gatsby canonical-urls pluginnpm install --save gatsby-plugin-canonical-urls// In your gatsby-config.jsplugins: [{resolve: `gatsby-plugin-canonical-urls`,options: {siteUrl: `https://www.example.com`,},},]
301 Issuepath: 'posts/cloudflare-google-storage-caching-setup'NO 301 issuepath: 'posts/seo-technic-for-my-website/'
because I have install a gatsby plugin to remove trailing slash for my site, to remove 301 I just need to add / in the path of my markdown post.
If you find my tips are useful, please support my work :)
Quick Links