Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Share button #21

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Enhancement] Complete the configuration for PWA
  • Loading branch information
TuentyFaiv committed Mar 25, 2020
commit 863b9fcf0f6f4681ad7ca3337b012bf6ea6246a0
22 changes: 17 additions & 5 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -60,15 +60,27 @@ module.exports = {
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Gatsby Starter Blog`,
short_name: `GatsbyJS`,
name: `Platzi Master Blog`,
short_name: `Blog`,
description: 'Blog posts by Platzi Master students',
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#663399`,
display: `minimal-ui`,
background_color: `#f1f1f1`,
theme_color: `#8DA54C`,
display: `standalone`,
orientation: 'any',
icon: `assets/platzimaster-icon.png`,
cache_busting_mode: 'none'
},
},
{
resolve: 'gatsby-plugin-offline',
options: {
precachePages: [`/content/*`],
workboxConfig: {
globPatterns: ['**/*']
}
}
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-typography`,