Skip to content

Instantly share code, notes, and snippets.

@riapacheco
Created July 20, 2022 18:08
Show Gist options
  • Save riapacheco/54a235f129fa93d3f8609e6fb109fb03 to your computer and use it in GitHub Desktop.
Save riapacheco/54a235f129fa93d3f8609e6fb109fb03 to your computer and use it in GitHub Desktop.
Google Fonts Pre-Load
// ACTUAL FILE: ngsw-config.json
{
"$schema": "./node_modules/@angular/service-worker/config/schema.json",
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/index.html",
"/manifest.webmanifest",
"/*.css",
"/*.js"
],
"urls": [
"https://fonts.googleapis.com/**", // Fonts preload here
"https://fonts.gstatic.com/**"
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/assets/**",
"/*.(eot|svg|cur|jpg|png|webp|gif|otf|ttf|woff|woff2|ani)"
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment