From 58ef8f5aecc761e6b8888e651e1caf65636f6877 Mon Sep 17 00:00:00 2001 From: Jason Halvorson <47071224+JasonHalvorson@users.noreply.github.com> Date: Thu, 11 Apr 2024 20:16:27 -0700 Subject: [PATCH] Fix the logo not appearing when installed as a PWA I think I initially had manifest.json in `src/`, but moved it to the root dir and forgot to update the src property.. --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 434cf75a5..18b9f8387 100644 --- a/manifest.json +++ b/manifest.json @@ -8,7 +8,7 @@ "theme_color": "#8c8c8c", "icons": [ { - "src": "../logo.png", + "src": "./logo.png", "sizes": "128x128", "type": "image/png" }