-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.config.js
114 lines (113 loc) · 3.24 KB
/
webpack.prod.config.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
const webpack = require('webpack');
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
mode: 'production',
entry: './app/src/index.js',
output: {
path: path.join(__dirname, '/build/'),
filename: '[name].min.js',
publicPath: ''
},
target: 'electron-renderer',
watch: true,
resolve: {
modules: ['app/src', 'node_modules'],
extensions: ['.js', '.json'],
},
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
output: {
comments: false
}
}
})
],
splitChunks: {
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor',
chunks: 'all',
}
}
}
},
performance: {
hints: false
},
plugins: [
new MiniCssExtractPlugin({
filename: 'bundle.min.css',
disable: false,
allChunks: true
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production'),
}),
new HtmlWebpackPlugin({
template: 'app/index.html',
inject: 'body',
filename: 'index.html'
}),
new OptimizeCSSAssetsPlugin({}),
// new BundleAnalyzerPlugin(),
],
module: {
rules: [
{
test: /\.(js)$/,
include: path.join(__dirname, 'app'),
exclude: /node_modules/,
use: ['babel-loader']
},
{
test: /\.(js)$/,
enforce: 'pre',
exclude: /node_modules/,
loader: 'eslint-loader',
options: {
configFile: '.eslintrc',
failOnWarning: false,
failOnError: false
}
},
{
test: /\.css$/,
exclude: /node_modules/,
use: [{ loader: MiniCssExtractPlugin.loader }, 'css-loader']
},
{
test: /\.(woff|woff2|eot|ttf|svg)$/,
use: {
loader: 'url-loader',
options: {
name: '[name].[ext]',
limit: false,
encoding: false,
esModule: false,
}
}
},
{
test: /\.(png|jpe?g|gif)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
useRelativePath: true,
outputPath: "images/",
publicPath: ""
}
}
],
},
externals: [
'child-killer'
]
};