-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
108 lines (101 loc) · 2.29 KB
/
webpack.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
const path = require("path");
const webpack = require("webpack");
const { merge } = require("webpack-merge");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const parts = require("./webpack.parts");
const APP_DIR = path.resolve(__dirname, "src");
const PUBLIC_DIR = path.resolve(__dirname, "public");
const DIST_DIR = path.resolve(__dirname, "dist");
const common = merge([
parts.loadJS({
include: [APP_DIR],
}),
parts.eslint({
include: [APP_DIR],
}),
{
entry: `${APP_DIR}/index.jsx`,
output: {
filename: "bundle.js",
path: DIST_DIR,
publicPath: "/",
},
resolve: {
alias: {
"~components": path.join(APP_DIR, "./components"),
"~helpers": path.join(APP_DIR, "./helpers"),
"~styles": path.join(APP_DIR, "./styles"),
},
extensions: [".js", ".jsx"],
modules: [APP_DIR, path.join(__dirname, "./node_modules")],
},
plugins: [
new HtmlWebpackPlugin({
template: `${PUBLIC_DIR}/index.html`,
filename: "index.html",
inject: "body",
}),
],
},
]);
const development = merge([
parts.loadSass({
include: [APP_DIR],
}),
parts.devServer({
host: process.env.HOST,
port: process.env.PORT,
}),
parts.hotReload(),
parts.generateSourceMaps({ type: "inline-source-map" }),
]);
const production = merge([
{
output: {
chunkFilename: "[name].[chunkhash].js",
filename: "[name].[chunkhash].js",
},
performance: {
hints: "warning",
maxEntrypointSize: 250000,
maxAssetSize: 200000,
},
},
parts.clean(),
parts.extractCSS({
include: [APP_DIR],
}),
parts.minifyCSS({
options: {
discardComments: {
removeAll: true,
},
},
safe: true,
}),
parts.minifyJS(),
parts.generateSourceMaps({ type: "source-map" }),
{
optimization: {
splitChunks: {
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: "vendor",
chunks: "initial",
},
},
},
runtimeChunk: {
name: "manifest",
},
},
},
parts.attachRevision(),
]);
module.exports = (mode) => {
if (mode === "production") {
return merge(common, production, { mode });
}
return merge(common, development, { mode });
};