Skip to content

Commit

Permalink
Fix webpack copy new version syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
powerivq committed Jun 24, 2021
1 parent b3b8f67 commit 168d855
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ module.exports = {
path: __dirname + '/dist/pusher',
},
plugins: [
new CopyWebpackPlugin([{from: 'vendor', to: 'vendor'}, {from: 'php'}]),
new CopyWebpackPlugin({
patterns: [{from: 'vendor', to: 'vendor'}, {from: 'php'}]
}),
],
};

0 comments on commit 168d855

Please sign in to comment.