-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathwebpack.prod.js
53 lines (51 loc) · 1.44 KB
/
webpack.prod.js
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
51
52
53
const webpack = require('webpack');
const path = require('path');
const merge = require('webpack-merge');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const WorkboxPlugin = require('workbox-webpack-plugin');
const baseConfig = require('./webpack.common.js');
module.exports = merge(baseConfig, {
mode: 'production',
entry: {
vendor: ['react', 'react-dom', 'lodash'],
app: ['@babel/polyfill', path.resolve(__dirname, 'src/index.tsx')],
},
output: {
// entry에 존재하는 app.js, vendor.js로 뽑혀 나온다.
path: path.resolve(__dirname, 'docs'),
filename: 'js/[name].[chunkhash:16].js',
chunkFilename: 'js/[id].[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: 5,
mangle: true,
unused: true,
},
sourceMap: true,
}),
],
},
plugins: [
// 로더들에게 옵션을 넣어주는 플러그인
new webpack.LoaderOptionsPlugin({
minimize: true,
}),
// index.html 로 의존성 파일들 inject해주는 플러그인
new WorkboxPlugin.GenerateSW({
swDest: 'sw.js',
}),
],
});