diff --git a/README.md b/README.md index bf071ee..4b0260d 100644 --- a/README.md +++ b/README.md @@ -203,11 +203,11 @@ module.exports = { }, */ plugins: [ - new CopyWebpackPlugin([ - { - from: 'node_modules/webextension-polyfill/dist/browser-polyfill.js' - } - ]) + new CopyWebpackPlugin({ + patterns: [{ + from: 'node_modules/webextension-polyfill/dist/browser-polyfill.js', + }], + }) ] } ```