Skip to content

Commit

Permalink
fix(pwa): set assets correct path in manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaraa committed Apr 22, 2024
1 parent 9665601 commit 66500d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions static/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#7acb65</TileColor>
</tile>
</msapplication>
<msapplication>
<tile>
<square150x150logo src="/static/mstile-150x150.png"/>
<TileColor>#7acb65</TileColor>
</tile>
</msapplication>
</browserconfig>
4 changes: 2 additions & 2 deletions static/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"short_name": "DankMuzikk",
"icons": [
{
"src": "/android-chrome-192x192.png",
"src": "/static/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"src": "/static/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
Expand Down

0 comments on commit 66500d5

Please sign in to comment.