Merge pull request #127 from NotWoods/pwa-icons

Reduce number of PWA icons, fix paths
This commit is contained in:
Bastien Wirtz 2020-10-23 14:46:36 -07:00 committed by GitHub
commit c368290e32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 33 additions and 144 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,79 +1,42 @@
{ {
"name": "Dashboard", "name": "Homer Dashboard",
"short_name": "homer", "short_name": "Homer",
"theme_color": "#3367D6", "theme_color": "#3367D6",
"start_url": "../",
"icons": [ "icons": [
{ {
"src": "./assets/icons/android-chrome-192x192.png", "src": "./icons/favicon-16x16.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./assets/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "./assets/icons/android-chrome-maskable-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "./assets/icons/android-chrome-maskable-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "./assets/icons/apple-touch-icon-60x60.png",
"sizes": "60x60",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon-76x76.png",
"sizes": "76x76",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon-120x120.png",
"sizes": "120x120",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon-180x180.png",
"sizes": "180x180",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon.png",
"sizes": "180x180",
"type": "image/png"
},
{
"src": "./assets/icons/favicon-16x16.png",
"sizes": "16x16", "sizes": "16x16",
"type": "image/png" "type": "image/png"
}, },
{ {
"src": "./assets/icons/favicon-32x32.png", "src": "./icons/favicon-32x32.png",
"sizes": "32x32", "sizes": "32x32",
"type": "image/png" "type": "image/png"
}, },
{ {
"src": "./assets/icons/msapplication-icon-144x144.png", "src": "./icons/icon-any.png",
"sizes": "144x144", "sizes": "512x512",
"type": "image/png" "type": "image/png",
"purpose": "any"
}, },
{ {
"src": "./assets/icons/mstile-150x150.png", "src": "./icons/icon-any.svg",
"sizes": "150x150", "sizes": "any",
"type": "image/png" "type": "image/svg+xml",
"purpose": "any"
},
{
"src": "./icons/icon-maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "./icons/safari-pinned-tab.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "monochrome"
} }
] ]
} }

View File

@ -1,3 +1,5 @@
const manifestOptions = require("./public/assets/manifest.json");
module.exports = { module.exports = {
chainWebpack: (config) => { chainWebpack: (config) => {
config.module config.module
@ -10,94 +12,17 @@ module.exports = {
publicPath: "", publicPath: "",
pwa: { pwa: {
manifestPath: "assets/manifest.json", manifestPath: "assets/manifest.json",
manifestOptions: {
start_url: "../",
},
appleMobileWebAppStatusBarStyle: "black", appleMobileWebAppStatusBarStyle: "black",
appleMobileWebAppCapable: "yes", appleMobileWebAppCapable: "yes",
name: "Homer Dashboard", name: manifestOptions.name,
short_name: "Homer", themeColor: manifestOptions.theme_color,
theme_color: "#3367D6", manifestOptions,
icons: [
{
src: "./assets/icons/android-chrome-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "./assets/icons/android-chrome-512x512.png",
sizes: "512x512",
type: "image/png",
},
{
src: "./assets/icons/android-chrome-maskable-192x192.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable",
},
{
src: "./assets/icons/android-chrome-maskable-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
{
src: "./assets/icons/apple-touch-icon-60x60.png",
sizes: "60x60",
type: "image/png",
},
{
src: "./assets/icons/apple-touch-icon-76x76.png",
sizes: "76x76",
type: "image/png",
},
{
src: "./assets/icons/apple-touch-icon-120x120.png",
sizes: "120x120",
type: "image/png",
},
{
src: "./assets/icons/apple-touch-icon-152x152.png",
sizes: "152x152",
type: "image/png",
},
{
src: "./assets/icons/apple-touch-icon-180x180.png",
sizes: "180x180",
type: "image/png",
},
{
src: "./assets/icons/apple-touch-icon.png",
sizes: "180x180",
type: "image/png",
},
{
src: "./assets/icons/favicon-16x16.png",
sizes: "16x16",
type: "image/png",
},
{
src: "./assets/icons/favicon-32x32.png",
sizes: "32x32",
type: "image/png",
},
{
src: "./assets/icons/msapplication-icon-144x144.png",
sizes: "144x144",
type: "image/png",
},
{
src: "./assets/icons/mstile-150x150.png",
sizes: "150x150",
type: "image/png",
},
],
iconPaths: { iconPaths: {
favicon32: "assets/icons/favicon-32x32.png", favicon32: "assets/icons/favicon-32x32.png",
favicon16: "assets/icons/favicon-16x16.png", favicon16: "assets/icons/favicon-16x16.png",
appleTouchIcon: "assets/icons/apple-touch-icon-152x152.png", appleTouchIcon: "assets/icons/icon-maskable.png",
maskIcon: "assets/icons/safari-pinned-tab.svg", maskIcon: "assets/icons/safari-pinned-tab.svg",
msTileImage: "assets/icons/msapplication-icon-144x144.png", msTileImage: "assets/icons/icon-any.png",
}, },
}, },
}; };