Skip to content

Commit 23bfc37

Browse files
committed
fix: Typo at webpack file
1 parent 6756be6 commit 23bfc37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack/plugins.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const ExtractTextPlugin = require('extract-text-webpack-plugin');
33
const HtmlWebpackPlugin = require('html-webpack-plugin');
44
const SplitByPathPlugin = require('webpack-split-by-path');
55
const CopyWebpackPlugin = require('copy-webpack-plugin');
6-
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
6+
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
77
const path = require('path');
88

99
const { NODE_ENV } = process.env;
@@ -38,7 +38,7 @@ const plugins = [
3838

3939
if (NODE_ENV === 'production') {
4040
plugins.push(
41-
new UglifyJsPlugin({
41+
new UglifyJSPlugin({
4242
compress: {
4343
warnings: false
4444
}

0 commit comments

Comments
 (0)