Using CopyWebpackPlugin, I am not able to ignore a specific folder or a specific file. It copies everything.
What I have done in the webpack.config.js:
new CopyWebpackPlugin([
{
from: 'src/assets',
to: 'assets',
ignore: ['src/assets/img/folder/test.png']
},
]),
I also tried like that:
new CopyWebpackPlugin([
{
from: 'src/assets',
to: 'assets',
ignore: ['src/assets/img/folder/*']
},
]),
Regarding the readme I think I am doing right.