diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-06-09 18:14:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 18:14:15 -0700 |
commit | 52ed5af6074bb6850925cbb658a60a4493079338 (patch) | |
tree | 56c7547cfaf6c52e689940545331b585b651f1fc | |
parent | cd688ef12ce4ee8cd550dd4702185b530827d7d6 (diff) | |
parent | 344c367ccd081421deee93ca7089b8a3569ec4d7 (diff) | |
download | homer-52ed5af6074bb6850925cbb658a60a4493079338.tar.gz homer-52ed5af6074bb6850925cbb658a60a4493079338.tar.zst homer-52ed5af6074bb6850925cbb658a60a4493079338.zip |
Merge pull request #81 from timmillwood/patch-2130448930
Make Homer more "web app" friendly
-rw-r--r-- | public/index.html | 2 | ||||
-rw-r--r-- | vue.config.js | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/public/index.html b/public/index.html index f718159..2cda7e2 100644 --- a/public/index.html +++ b/public/index.html | |||
@@ -3,7 +3,7 @@ | |||
3 | <head> | 3 | <head> |
4 | <meta charset="utf-8"> | 4 | <meta charset="utf-8"> |
5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> | 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
6 | <meta name="viewport" content="width=device-width,initial-scale=1.0"> | 6 | <meta name="viewport" content="width=device-width,initial-scale=1.0, viewport-fit=cover"> |
7 | <meta name="robots" content="noindex"> | 7 | <meta name="robots" content="noindex"> |
8 | <link rel="icon" href="<%= BASE_URL %>favicon.png"> | 8 | <link rel="icon" href="<%= BASE_URL %>favicon.png"> |
9 | <title><%= htmlWebpackPlugin.options.title %></title> | 9 | <title><%= htmlWebpackPlugin.options.title %></title> |
diff --git a/vue.config.js b/vue.config.js index 7214c12..c244a86 100644 --- a/vue.config.js +++ b/vue.config.js | |||
@@ -10,6 +10,8 @@ module.exports = { | |||
10 | publicPath: "", | 10 | publicPath: "", |
11 | pwa: { | 11 | pwa: { |
12 | manifestPath: "assets/manifest.json", | 12 | manifestPath: "assets/manifest.json", |
13 | appleMobileWebAppStatusBarStyle: "black", | ||
14 | appleMobileWebAppCapable: "yes", | ||
13 | iconPaths: { | 15 | iconPaths: { |
14 | favicon32: "assets/icons/favicon-32x32.png", | 16 | favicon32: "assets/icons/favicon-32x32.png", |
15 | favicon16: "assets/icons/favicon-16x16.png", | 17 | favicon16: "assets/icons/favicon-16x16.png", |