I've this config:
new CopyWebpackPlugin([
{ from: `${paths.static}/pom.xml` },
{ from: `${paths.static}/.htaccess` }
], {
ignore: []
}),
however the file .htaccess isn't copied, what could be?
Nvm, stupid mistake
@alex88 I'm probably making the same stupid mistake, can you tell what you found about it please?
@jayrmotta I don't remember actually, I don't have that code in any repo either, maybe the ignore key is wrong, I really don't know sorry
For people looking in the future, i was checking the directory with 'ls' instead of 'ls -a', so the file was actually being copied
new CopyWebpackPlugin([
{from: './public/.htaccess'}
])
Most helpful comment
@alex88 I'm probably making the same stupid mistake, can you tell what you found about it please?