
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
Sometimes loading static files take long time to load. Especially CSS, Images, Webfont (Fonts). The best way to tackle them is to CACHE
them in users devices. If your new to CACHE
concepts and wondering how the hell should I do it. Then I have already written an article for it How To Cache Static Files With NGINX Server. Please have a look at it and I promise that you wont regret about about that :)
Even after caching fonts sometimes when you run an audit in Google Lighthouse, you will basically encounter Ensure text remains visible during Webfont load
. Which looks as the below image
This is because some browsers wait for the fonts to get loaded and don't show texts in the browser until they load the webfont. You might have imported the font-family
as below.
@font-face {
font-family: inter;
src: url('../fonts/Inter-Regular.otf');
}
One simple way to tell browsers to show the default one text and don't wait for fonts to load is add the following code.
font-display: swap;
Now your overall CSS
will look like the following
@font-face {
font-family: inter;
src: url('../fonts/Inter-Regular.otf');
font-display: swap;
}
composer.json v/s composer.lock
Google reCAPTCHA Integration In PHP Laravel Forms
Install Apache Web Server On Ubuntu 20.04 / Linux & Manage It
Generate RSS Feeds in PHP Laravel
Unable to prepare route [{fallbackPlaceholder}] for serialization. Uses Closure In Laravel
Setup AMP (Accelerated Mobile Pages) In PHP Laravel
Install Linux, NGINX, MYSQL, PHP (LEMP Stack) on Ubuntu
Generate Sitemap in PHP Laravel
Cache Static Files With NGINX Server
Firebase Cloud Messaging (FCM) Browser Web Push Notifications Using Javascript And PHP
Free SSL Certificate With Lets Encrypt/Certbot In Linux (Single / Multiple Domains)
Sass or SCSS @function vs @mixin
Proper Way To Validate MIME Type Of Files While Handling File Uploads In PHP