Alexey
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
3 deletions
-
content/docs/optimizing-performance.md
|
@ -147,9 +147,7 @@ For the most efficient webpack production build, make sure to include these plug |
|
|
|
|
|
|
|
|
```js |
|
|
```js |
|
|
new webpack.DefinePlugin({ |
|
|
new webpack.DefinePlugin({ |
|
|
'process.env': { |
|
|
'process.env.NODE_ENV': JSON.stringify('production') |
|
|
NODE_ENV: JSON.stringify('production') |
|
|
|
|
|
} |
|
|
|
|
|
}), |
|
|
}), |
|
|
new webpack.optimize.UglifyJsPlugin() |
|
|
new webpack.optimize.UglifyJsPlugin() |
|
|
``` |
|
|
``` |
|
|