Skip to content

Commit

Permalink
docs(README): Updated code in "Usage with webpack without bundling" s…
Browse files Browse the repository at this point in the history
…ection (mozilla#240)
  • Loading branch information
tima1702 committed Oct 5, 2020
1 parent b0596ad commit 01fb67f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -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',
}],
})
]
}
```
Expand Down

0 comments on commit 01fb67f

Please sign in to comment.