diff --git a/src/web/app/base.pug b/src/web/app/base.pug index b1ca80deb..3c3546d50 100644 --- a/src/web/app/base.pug +++ b/src/web/app/base.pug @@ -9,6 +9,7 @@ html meta(name='application-name' content='Misskey') meta(name='theme-color' content=themeColor) meta(name='referrer' content='origin') + link(rel='manifest' href='/manifest.json') title Misskey diff --git a/src/web/assets/manifest.json b/src/web/assets/manifest.json index 0967ef424..783d0539a 100644 --- a/src/web/assets/manifest.json +++ b/src/web/assets/manifest.json @@ -1 +1,7 @@ -{} +{ + "short_name": "Misskey", + "name": "Misskey", + "start_url": "/", + "display": "standalone", + "background_color": "#313a42" +}