diff --git a/app/icons/app-icon.svg b/app/icons/app-icon.svg index 41597ec..efc3418 100644 --- a/app/icons/app-icon.svg +++ b/app/icons/app-icon.svg @@ -1,13 +1,23 @@ - + - - - - + + + + - - - - - + + + + + + + + + + + + + + + diff --git a/app/icons/favicon.svg b/app/icons/favicon.svg new file mode 100644 index 0000000..e51e1f1 --- /dev/null +++ b/app/icons/favicon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/brunch-config.js b/brunch-config.js index a44a212..19bb8e9 100644 --- a/brunch-config.js +++ b/brunch-config.js @@ -57,18 +57,25 @@ module.exports = { }, // App icon generator rsvg: { - conversions: [{ - input: 'app/icons/app-icon.svg', - outputDefaults: {path: 'icons/app-icon-{width}.png'}, - output: [ - {width: 32, path: 'icons/favicon.png'}, - {width: 180, path: 'icons/apple-touch-icon.png'}, - {width: 192}, - {width: 256}, - {width: 384}, - {width: 512} - ] - }] + conversions: [ + { + input: 'app/icons/favicon.svg', + output: [ + {width: 32, path: 'icons/favicon.png'} + ] + }, + { + input: 'app/icons/app-icon.svg', + outputDefaults: {path: 'icons/app-icon-{width}.png'}, + output: [ + {width: 180, path: 'icons/apple-touch-icon.png'}, + {width: 192}, + {width: 256}, + {width: 384}, + {width: 512} + ] + } + ] }, // Service worker cache for offline access swPrecache: {