Add Gatsby.js PWA guide (#31539)

This commit is contained in:
Dorell James Galang
2019-07-02 23:56:26 +08:00
committed by Paul Gamble
parent 96a8bda1fd
commit 40504e30b2

View File

@ -0,0 +1,16 @@
---
title: Gatsby.js Progressive Web Apps (PWA)
---
## Gatsby.js PWA
Gatsby is designed to provide top-notch performance out of the box. It handles code splitting, code minification, and optimizations like pre-loading in the background, image processing, etc., so that the site you build is highly performant, without any kind of manual tuning. These performance features are a big part of supporting the progressive web app approach.
Gatsby mets the three baseline criterias for it to quality as PWA.
- It must run under HTTPS.
- It must include a Web App Manifest.
- It must implement a service worker.
### More Information:
Check out the Gatsby.js official docs for Progressive Web Apps at [Gatsby PWA](https://www.gatsbyjs.org/docs/progressive-web-app/). For more information and learn more, visit: [Gatsby.js official site](https://www.gatsbyjs.org/tutorial/)