From b7e672801ce7faff56f6e52a867d30100408a163 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Mon, 17 Oct 2022 16:35:18 +0200 Subject: [PATCH] feat(manifest): Add information about native applications on fdroid and play --- front/vite.config.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/front/vite.config.ts b/front/vite.config.ts index 2c47025c2..f80883be8 100644 --- a/front/vite.config.ts +++ b/front/vite.config.ts @@ -46,6 +46,18 @@ export default defineConfig(({ mode }) => ({ sizes: '512x512', type: 'image/png' } + ], + related_applications: [ + { + "platform": "play", + "url": "https://play.google.com/store/apps/details?id=audio.funkwhale.ffa", + "id": "audio.funkwhale.ffa" + }, + { + "platform": "f-droid", + "url": "https://f-droid.org/en/packages/audio.funkwhale.ffa/", + "id": "audio.funkwhale.ffa" + } ] } })