I just started to use Webpack with an Angular 1.x application, I have a working solution but rather than require my images (which would force them to be copied to the build directory) I was hoping to automatically parse the html and require all IMG tags.
I seemed to have found a module, although it doesn't seem to be maintained any more: https://github.com/webpack/html-loader
I was wondering what my options are here?
The option is to use the Webpack copy plugin to copy items into the build directory but this means I may copy things not in use.
I am just starting out with Webpack but what I see so far is great although it does require a different type of thinking to gulp.