shellscape / webpack-manifest-plugin

webpack plugin for generating asset manifests
MIT License
1.44k stars 184 forks source link

Limit image asset name to base name to allow path in name #15

Closed jmurzy closed 8 years ago

jmurzy commented 8 years ago

This allows one to set a different output path for images (vs. what's defined for output.path).

"main.js": "bundles/main.js", "assets/images/xyz.svg": "assets/images/xyz.svg"

should be

"main.js": "bundles/main.js", "xyz.svg": "assets/images/xyz.svg"

danethurber commented 8 years ago

Try again with the latest release and let me know if you're still having issues.