-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.example.config.js
68 lines (65 loc) · 1.5 KB
/
webpack.example.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
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
.BundleAnalyzerPlugin;
module.exports = {
optimization: {
minimize: true,
splitChunks: {
cacheGroups: {
commons: {
name: "commons",
chunks: "initial",
minChunks: 2,
},
},
},
// minimizer: [new CssMinimizerPlugin()],
},
output: {
filename: "[id]-[hash].js",
},
mode: "development",
plugins: [
new HtmlWebpackPlugin({ template: "example/index.html" }),
new BundleAnalyzerPlugin(),
new MiniCssExtractPlugin({
filename: "[hash].css",
chunkFilename: "[id]-[hash].css",
ignoreOrder: false,
}),
],
devtool: "sourcemap",
module: {
rules: [
{
test: /\.(png|jpg)$/,
loader: "file-loader",
},
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, "css-loader"],
},
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: "babel-loader",
},
},
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
],
},
entry: {
example: path.resolve(__dirname + "/example/index.js"),
},
resolve: {
extensions: [".ts", ".tsx", ".js"],
},
};