mirror of
https://github.com/fmhy/edit.git
synced 2025-10-12 15:51:07 +11:00
Fixed White Bg in pwa icon (#4098)
* fixed pwa blue bg icon * E * E * slight fix for ios
This commit is contained in:
parent
fb03aacbc7
commit
3cbbccc1a9
3 changed files with 10 additions and 10 deletions
|
@ -45,11 +45,11 @@ export default defineConfig({
|
||||||
['link', { rel: 'icon', href: '/test.png' }],
|
['link', { rel: 'icon', href: '/test.png' }],
|
||||||
// PWA
|
// PWA
|
||||||
['link', { rel: 'manifest', href: '/manifest.json' }],
|
['link', { rel: 'manifest', href: '/manifest.json' }],
|
||||||
['link', { rel: 'icon', href: '/test.png', type: 'image/svg+xml' }],
|
['link', { rel: 'icon', href: '/pwa_icon.png', type: 'image/svg+xml' }],
|
||||||
['link', { rel: 'alternate icon', href: '/test.png' }],
|
['link', { rel: 'alternate icon', href: '/pwa_icon.png' }],
|
||||||
['link', { rel: 'mask-icon', href: '/test.png', color: '#7bc5e4' }],
|
['link', { rel: 'mask-icon', href: '/pwa_icon.png', color: '#000000ff' }],
|
||||||
['meta', { name: 'keywords', content: meta.keywords.join(' ') }],
|
['meta', { name: 'keywords', content: meta.keywords.join(' ') }],
|
||||||
['link', { rel: 'apple-touch-icon', href: '/test.png', sizes: '192x192' }],
|
['link', { rel: 'apple-touch-icon', href: '/pwa_icon.png', sizes: '192x192' }],
|
||||||
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
|
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
|
||||||
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'default' }],
|
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'default' }],
|
||||||
// Bing site verification
|
// Bing site verification
|
||||||
|
@ -145,8 +145,8 @@ export default defineConfig({
|
||||||
name: 'FMHY - freemediaheckyeah',
|
name: 'FMHY - freemediaheckyeah',
|
||||||
short_name: 'FMHY',
|
short_name: 'FMHY',
|
||||||
description: 'The largest collection of free stuff on the internet!',
|
description: 'The largest collection of free stuff on the internet!',
|
||||||
theme_color: '#7bc5e4',
|
theme_color: '#000000ff',
|
||||||
background_color: '#ffffff',
|
background_color: '#000000ff',
|
||||||
display: 'standalone',
|
display: 'standalone',
|
||||||
orientation: 'portrait',
|
orientation: 'portrait',
|
||||||
scope: '/',
|
scope: '/',
|
||||||
|
@ -158,13 +158,13 @@ export default defineConfig({
|
||||||
type: 'image/x-icon'
|
type: 'image/x-icon'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: '/test.png',
|
src: '/pwa_icon.png',
|
||||||
sizes: '192x192',
|
sizes: '192x192',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
purpose: 'any maskable'
|
purpose: 'any maskable'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: '/test.png',
|
src: '/pwa_icon.png',
|
||||||
sizes: '512x512',
|
sizes: '512x512',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
purpose: 'any maskable'
|
purpose: 'any maskable'
|
||||||
|
|
|
@ -15,13 +15,13 @@
|
||||||
"type": "image/x-icon"
|
"type": "image/x-icon"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "/test.png",
|
"src": "/pwa_icon.png",
|
||||||
"sizes": "192x192",
|
"sizes": "192x192",
|
||||||
"type": "image/png",
|
"type": "image/png",
|
||||||
"purpose": "any maskable"
|
"purpose": "any maskable"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "/test.png",
|
"src": "/pwa_icon.png",
|
||||||
"sizes": "512x512",
|
"sizes": "512x512",
|
||||||
"type": "image/png",
|
"type": "image/png",
|
||||||
"purpose": "any maskable"
|
"purpose": "any maskable"
|
||||||
|
|
BIN
docs/public/pwa_icon.png
Normal file
BIN
docs/public/pwa_icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 205 KiB |
Loading…
Add table
Add a link
Reference in a new issue