Skip to content

Commit

Permalink
Merge pull request #784 from Stremio/fix/maskable-icons-build-override
Browse files Browse the repository at this point in the history
PWA: fix maskable icon
  • Loading branch information
kKaskak authored Jan 22, 2025
2 parents 51a2f0e + 528b0f6 commit b20014a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,16 +261,16 @@ module.exports = (env, argv) => ({
icons: [
{
src: 'images/icon.png',
destination: `${COMMIT_HASH}/images`,
destination: `${COMMIT_HASH}/icons`,
sizes: [196, 512],
purpose: 'any',
ios: true,
purpose: 'any'
},
{
src: 'images/maskable_icon.png',
destination: `${COMMIT_HASH}/images`,
destination: `${COMMIT_HASH}/maskable_icons`,
sizes: [196, 512],
purpose: 'maskable',
ios: true
},
{
src: 'favicons/favicon.ico',
Expand Down

0 comments on commit b20014a

Please sign in to comment.