- fixing conflicting order warning and firebase warning

- added more web manifest rules
This commit is contained in:
Amruth Pillai
2020-07-09 15:45:20 +05:30
parent 370b0c4020
commit c00d7a9eef
6 changed files with 626 additions and 1294 deletions

View File

@ -30,24 +30,34 @@ module.exports = {
resolve: 'gatsby-plugin-create-client-paths',
options: { prefixes: ['/app/*'] },
},
{
resolve: 'gatsby-plugin-offline',
options: {
precachePages: ['/', '/app/*'],
},
},
'gatsby-plugin-lodash',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Reactive Resume',
short_name: 'RxResume',
start_url: '/',
description: 'A free and open-source resume builder.',
start_url: '/?source=pwa',
icon: `assets/images/logo.png`,
background_color: '#FFFFFF',
theme_color: '#444444',
display: 'standalone',
shortcuts: [
{
name: 'Dashboard',
short_name: 'Dashboard',
description: 'View/manage all your resumes at a glance',
url: '/app/dashboard?source=pwa',
},
],
},
},
{
resolve: 'gatsby-plugin-offline',
options: {
precachePages: ['', '/app/*'],
},
},
'gatsby-plugin-lodash',
'gatsby-plugin-postcss',
{
resolve: 'gatsby-source-filesystem',