arthurbergmz / webpack-pwa-manifest

Progressive Web App Manifest Generator for Webpack, with auto icon resizing and fingerprinting support.
MIT License
513 stars 93 forks source link

icons src output path #173

Open gormonn opened 1 year ago

gormonn commented 1 year ago
"webpack-pwa-manifest": "^4.3.0",

I have a similar problem as https://github.com/arthurbergmz/webpack-pwa-manifest/issues/23

As a result of the build, the manifest and the icons are on the same level in the directory: -- build ---- manifest.json ---- icon.png

In this case, the paths to the icons are absolute: "src": "build/icon.png"

Although they should be relative: "src": "icon.png"

As a workaround - I can write a post processor. But it's totally annoying.