I am trying to automate assets going into /dist. I have the following config.js:
module.exports = { context: __dirname + "/lib", entry: { m
You could use the CopyWebpackPlugin. It's working just like this:
module.exports = { plugins: [ new CopyWebpackPlugin([{ from: './*.html' }]) ] }