-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathwebpack.config.js
108 lines (105 loc) · 2.92 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 HtmlWebPackPlugin = require("html-webpack-plugin");
const getFilesFromDir = require("./config/files");
const PAGE_DIR = path.join("src", "pages", path.sep);
const htmlPlugins = getFilesFromDir(PAGE_DIR, [".html"]).map( filePath => {
const fileName = filePath.replace(PAGE_DIR, "");
// { chunks:["contact", "vendor"], template: "src/pages/contact.html", filename: "contact.html"}
return new HtmlWebPackPlugin({
chunks:[fileName.replace(path.extname(fileName), ""), "vendor"],
template: filePath,
filename: fileName
})
});
// { contact: "./src/pages/contact.js" }
const entry = getFilesFromDir(PAGE_DIR, [".js"]).reduce( (obj, filePath) => {
const entryChunkName = filePath.replace(path.extname(filePath), "").replace(PAGE_DIR, "");
obj[entryChunkName] = `./${filePath}`;
return obj;
}, {});
module.exports = (env, argv) => ({
entry: entry,
output: {
path: path.join(__dirname, "build"),
filename: "[name].[hash:4].js"
},
devtool: argv.mode === 'production' ? false : 'eval-source-maps',
plugins: [
...htmlPlugins
],
resolve:{
alias:{
src: path.resolve(__dirname, "src"),
components: path.resolve(__dirname, "src", "components")
}
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader:"babel-loader",
options:{
presets: [
"@babel/preset-env",
"@babel/preset-react"
],
}
},
},
{
test: /\.css$/,
use: ["style-loader", {loader: "css-loader", options: {modules: true}}],
exclude: /node_modules/,
},
{
test: /\.(svg|jpg|gif|png)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: (url, resourcePath, context) => {
if(argv.mode === 'development') {
const relativePath = path.relative(context, resourcePath);
return `/${relativePath}`;
}
return `/assets/images/${path.basename(resourcePath)}`;
}
}
}
]
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: [
{
loader: 'file-loader',
options: {
outputPath: (url, resourcePath, context) => {
if(argv.mode === 'development') {
const relativePath = path.relative(context, resourcePath);
return `/${relativePath}`;
}
return `/assets/fonts/${path.basename(resourcePath)}`;
}
}
}
]
}]
},
optimization: {
minimize: argv.mode === 'production' ? true : false,
splitChunks: {
cacheGroups: {
vendor: {
test: /node_modules/,
chunks: "initial",
name: "vendor",
enforce: true
}
}
}
}
});