diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index 201e841..fd0cb10 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -17,16 +17,16 @@ export default defineNuxtConfig({ mode: "out-in", }, head: { - // meta: [ - // { - // name: "mobile-web-app-capable" , - // content: "yes", - // }, - // ], + meta: [ + { + name: "mobile-web-app-capable", + content: "yes", + }, + ], link: [ { rel: "apple-touch-icon", - href: "/logo/logo.svg", + href: "/logo/apple-icon-180.png", }, ], }, @@ -97,34 +97,29 @@ export default defineNuxtConfig({ theme_color: "#ffffff", icons: [ { - src: "/logo/logo.maskable.svg", - sizes: "683x683", - type: "image/svg+xml", + src: "/logo/manifest-icon-192.maskable.png", + sizes: "192x192", + type: "image/png", + purpose: "any", + }, + { + src: "/logo/manifest-icon-192.maskable.png", + sizes: "192x192", + type: "image/png", + purpose: "maskable", + }, + { + src: "/logo/manifest-icon-512.maskable.png", + sizes: "512x512", + type: "image/png", + purpose: "any", + }, + { + src: "/logo/manifest-icon-512.maskable.png", + sizes: "512x512", + type: "image/png", + purpose: "maskable", }, - // { - // src: "/logo/manifest-icon-192.maskable.png", - // sizes: "192x192", - // type: "image/png", - // purpose: "any", - // }, - // { - // src: "/logo/manifest-icon-192.maskable.png", - // sizes: "192x192", - // type: "image/png", - // purpose: "maskable", - // }, - // { - // src: "/logo/manifest-icon-512.maskable.png", - // sizes: "512x512", - // type: "image/png", - // purpose: "any", - // }, - // { - // src: "/logo/manifest-icon-512.maskable.png", - // sizes: "512x512", - // type: "image/png", - // purpose: "maskable", - // }, ], }, workbox: { diff --git a/frontend/public/logo/apple-icon-180.png b/frontend/public/logo/apple-icon-180.png index 35c9e73..ce85009 100644 Binary files a/frontend/public/logo/apple-icon-180.png and b/frontend/public/logo/apple-icon-180.png differ diff --git a/frontend/public/logo/logo-test-2.png b/frontend/public/logo/logo-test-2.png deleted file mode 100644 index 283e753..0000000 Binary files a/frontend/public/logo/logo-test-2.png and /dev/null differ diff --git a/frontend/public/logo/logo-test.png b/frontend/public/logo/logo-test.png deleted file mode 100644 index 87c05b4..0000000 Binary files a/frontend/public/logo/logo-test.png and /dev/null differ diff --git a/frontend/public/logo/logo.svg b/frontend/public/logo/logo.svg deleted file mode 100644 index b920499..0000000 --- a/frontend/public/logo/logo.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/frontend/public/logo/manifest-icon-192.maskable.png b/frontend/public/logo/manifest-icon-192.maskable.png index 5578895..422ff4d 100644 Binary files a/frontend/public/logo/manifest-icon-192.maskable.png and b/frontend/public/logo/manifest-icon-192.maskable.png differ diff --git a/frontend/public/logo/manifest-icon-512.maskable.png b/frontend/public/logo/manifest-icon-512.maskable.png index 9ae2c14..9f6907d 100644 Binary files a/frontend/public/logo/manifest-icon-512.maskable.png and b/frontend/public/logo/manifest-icon-512.maskable.png differ