-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.prod.js
More file actions
50 lines (49 loc) · 1.62 KB
/
Copy pathwebpack.prod.js
File metadata and controls
50 lines (49 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const webpack = require('webpack')
const path = require('path')
const merge = require('webpack-merge')
const TerserPlugin = require('terser-webpack-plugin')
const baseConfig = require('./webpack.common.js')
const plugins = [
// 로더들에게 옵션을 넣어주는 플러그인
new webpack.LoaderOptionsPlugin({
minimize: true,
}),
new webpack.optimize.MinChunkSizePlugin({
minChunkSize: 30000,
}),
]
module.exports = merge(baseConfig, {
mode: 'production',
entry: {
vendor: ['react', 'react-dom', 'react-router-dom', 'lodash', 'antd'],
app: ['@babel/polyfill', path.resolve(__dirname, 'src/index.js')],
},
output: {
// entry에 존재하는 app.js, vendor.js로 뽑혀 나온다.
path: path.resolve(__dirname, 'public'),
filename: 'js/[name].[chunkhash:16].js',
chunkFilename: 'js/[name].[chunkhash:16].js',
publicPath: '/',
},
optimization: {
minimizer: [
// we specify a custom UglifyJsPlugin here to get source maps in production
new TerserPlugin({
cache: true,
parallel: true,
terserOptions: {
warnings: false,
compress: {
warnings: false,
unused: true, // tree shaking(export된 모듈 중 사용하지 않는 모듈은 포함하지않음)
},
ecma: 6,
mangle: true,
unused: true,
},
sourceMap: true,
}),
],
},
plugins,
})