Browse Source

Fix webpack `DefinePlugin` usage example

main
Alexey 7 years ago
committed by GitHub
parent
commit
1d4c82f9be
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      content/docs/optimizing-performance.md

4
content/docs/optimizing-performance.md

@ -147,9 +147,7 @@ For the most efficient webpack production build, make sure to include these plug
```js
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
'process.env.NODE_ENV': JSON.stringify('production')
}),
new webpack.optimize.UglifyJsPlugin()
```

Loading…
Cancel
Save