new FileManagerPlugin({
events: {
onEnd: {
copy: [
{
source: 'C:\\temp\\project\\dist\\bundle.{js,css}',
destination: ' some destination ',
},
],
},
},
Issue
Plugin can't copy absolute file names with glob pattern, i.e.
source: '.\dist\bundle.{js,css}' will copy file, but
source: 'C:\temp\project\dist\bundle.{js,css}' will not
Config
Issue
Plugin can't copy absolute file names with glob pattern, i.e. source: '.\dist\bundle.{js,css}' will copy file, but source: 'C:\temp\project\dist\bundle.{js,css}' will not
Your Environment