diff --git a/nuxt.config.js b/nuxt.config.js index 060e0ab..d9cf541 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -24,12 +24,32 @@ export default { name: 'theme-color', content: '#242732', }, + { + name: 'apple-mobile-web-app-capable', + content: 'yes', + }, + { + name: 'mobile-web-app-capable', + content: 'yes', + }, + { + name: 'apple-touch-fullscreen', + content: 'yes', + }, + { + name: 'apple-mobile-web-app-title', + content: 'hawk-tracker.ru' + }, + { + name: 'apple-mobile-web-app-status-bar-style', + content: 'default', + }, ], link: [ { rel: 'icon', type: 'image/x-icon', - href: '/favicon-32.png', + href: '/favicon.png', sizes: '32x32', }, { @@ -37,6 +57,15 @@ export default { type: 'text/css', href: 'https://fonts.googleapis.com/css?family=Roboto:400,500,700,900&display=swap', }, + { + rel: 'icon', + href: '/favicon.ico', + sizes: '32x32', + }, + { + rel: 'apple-touch-icon', + href: '/apple-touch-icon.png', + }, ], }, diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..5e6d878 Binary files /dev/null and b/static/android-chrome-192x192.png differ diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..8f38af9 Binary files /dev/null and b/static/android-chrome-512x512.png differ diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..577e6a6 Binary files /dev/null and b/static/apple-touch-icon.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..1944d53 Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/favicon-32.png b/static/favicon.png similarity index 100% rename from static/favicon-32.png rename to static/favicon.png