From 40504e30b2310242cebee5603153748ff00f2cdb Mon Sep 17 00:00:00 2001 From: Dorell James Galang Date: Tue, 2 Jul 2019 23:56:26 +0800 Subject: [PATCH] Add Gatsby.js PWA guide (#31539) --- guide/english/gatsbyjs/gatsbyjs-pwa/index.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 guide/english/gatsbyjs/gatsbyjs-pwa/index.md diff --git a/guide/english/gatsbyjs/gatsbyjs-pwa/index.md b/guide/english/gatsbyjs/gatsbyjs-pwa/index.md new file mode 100644 index 0000000000..1a179ffa02 --- /dev/null +++ b/guide/english/gatsbyjs/gatsbyjs-pwa/index.md @@ -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/)