Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular component library - image references in templates

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?

like image 586
Stefan Kendall Avatar asked Jan 26 '17 17:01

Stefan Kendall


1 Answers

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

like image 192
Slava.K Avatar answered Nov 16 '22 16:11

Slava.K