Skip to content

Commit

Permalink
Fine tune manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Minishlink committed Feb 25, 2018
1 parent 0b01891 commit 60d0c61
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions web/webpack.config.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ module.exports = {
}),
new WebpackPwaManifest({
name: environment.APP_NAME,
short_name: 'DailyScrum',
short_name: environment.APP_NAME,
description: 'An app for your daily dose of Scrum',
background_color: '#F5FCFF',
theme_color: '#43d2fc',
Expand All @@ -121,7 +121,7 @@ module.exports = {
},
{
src: path.resolve('./ios/DailyScrum/Images.xcassets/AppIcon.appiconset/icon-1024@1x.png'),
sizes: [36, 48, 72, 96, 144, 192, 512],
sizes: [36, 48, 72, 96, 128, 144, 192, 256, 512, 1024],
destination: path.join('icons', 'android'),
},
],
Expand All @@ -138,7 +138,9 @@ module.exports = {
],
ios: true,
}),
new OfflinePlugin(),
new OfflinePlugin({
AppCache: false,
}),
],

resolve: {
Expand Down

0 comments on commit 60d0c61

Please sign in to comment.