-
-
Notifications
You must be signed in to change notification settings - Fork 424
/
webpack.prod.js
59 lines (57 loc) · 1.52 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
54
55
56
57
58
59
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');
const plugins = [
new webpack.LoaderOptionsPlugin({
minimize: true,
}),
new HtmlWebpackPlugin({
filename: 'index.html',
title: 'React Design Editor',
meta: {
description: `React Design Editor has started to developed direct manipulation of editable design tools like Powerpoint, We've developed it with react.js, ant.design, fabric.js`,
},
}),
new WorkboxPlugin.GenerateSW({
skipWaiting: true,
clientsClaim: true,
swDest: 'sw.js',
}),
];
module.exports = merge(baseConfig, {
mode: 'production',
entry: {
vendor: ['react', 'react-dom', 'lodash', 'fabric', 'antd'],
app: ['core-js/stable', path.resolve(__dirname, 'src/index.tsx')],
},
output: {
path: path.resolve(__dirname, 'docs'),
filename: 'js/[name].[chunkhash:16].js',
chunkFilename: 'js/[id].[chunkhash:16].js',
publicPath: './',
},
optimization: {
minimizer: [
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: false,
terserOptions: {
warnings: false,
compress: {
warnings: false,
unused: true, // tree shaking(export된 모듈 중 사용하지 않는 모듈은 포함하지않음)
},
ecma: 6,
mangle: true,
unused: true,
},
}),
],
},
plugins,
});