Reputation: 67892
I have an npm package that has a number of angular components. In their templates, they reference images. If I copy the images to my application's images
directory, the references resolve, but this feels stupid.
Is there a way to have webpack handle image writing so that when App B includes components from App A, the images work in the build and there's no manual copy step involved?
Upvotes: 11
Views: 1180
Reputation: 3080
If images are not properly required in this npm package then webpack won't be able to process them. You may try something like copy-webpack-plugin or write own copy script to avoid manual copying
Upvotes: 3