Can you please clarify? I specify in my webpack config the bundle output to be in the www folder. Then I use the copy plugin like this:
plugins: [
new CopyWebpackPlugin([
{
from: 'src/index.html',
to: 'index.html',
toType: 'file'
},
])
],
So in this case the index.html ends up inside the www folder. Is that right? I was expecting it to be agnostic of the webpack's output path or at least via an option? I did not understand something like that from reading the docs, just need clarification if the base destination root is the one of webpack's, thanks.
It is bug tracker, not stackoverflow or gitter, please use this services for question in future