From 36271acef0661f880ed55e7d90b9ec8f35bfcf18 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Mon, 27 Jan 2025 18:37:22 +0000 Subject: [PATCH] Avoid looking like an installable PWA (#284) Based on https://web.dev/articles/install-criteria#criteria, this should prevent an install prompt in "helpful" browsers. --- content/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manifest.json b/content/manifest.json index 26f98281d..30fab52fe 100644 --- a/content/manifest.json +++ b/content/manifest.json @@ -23,5 +23,5 @@ } ], "theme_color": "#af2c93", - "display": "standalone" + "display": "browser" }