new CopyWebpackPlugin([ { from: 'src/app/**/*.html', to: '/dist/app/' }, { from: '/src/app/**/*.css', to: '/dist/app/' } ]), when i try this destination is dist/src/app but i want copy my all src/app html and css to dist/app how can i do that.
new CopyWebpackPlugin([
{
from: 'src/app//*.html',
to: '/dist/app/'
},
{
from: '/src/app//*.css',
to: '/dist/app/'
}
]),
when i try this destination is dist/src/app but i want copy my all src/app html and css to dist/app how can i do that.