-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.sample.js
80 lines (76 loc) · 1.39 KB
/
webpack.config.sample.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
"use strict";
var path = require("path");
var webpack = require("webpack");
var assetsPath = path.join(__dirname, "public/assets");
var loaderOptions = {
mozjpeg: {
quality: 65
},
pngquant: {
quality: [0.65, 0.9],
speed: 4
},
svgo: {
plugins: [
{
removeViewBox: false
},
{
removeEmptyAttrs: false
}
]
},
gifsicle: {
optimizationLevel: 7,
interlaced: false
},
optipng: {
optimizationLevel: 7,
interlaced: false
},
webp: {
quality: 75
}
};
var fileLoaderOptions = {
hash: "sha512",
digest: "hex",
name: "[hash].[ext]"
};
module.exports = [
{
mode: "production",
entry: "./test/app.js",
output: {
path: assetsPath,
filename: "app.[hash].js"
},
module: {
rules: [
{
test: /.*\.(gif|png|jpe?g|svg|webp)$/i,
use: [
{
loader: "file-loader",
options: fileLoaderOptions
},
{
loader: require.resolve("../"),
options: loaderOptions
}
]
},
{
test: /\.bmp$/i,
use: [
{
loader: "file-loader",
options: fileLoaderOptions
},
require.resolve("../") // loaderUtils.getOptions() returns null for this one
]
}
]
}
}
];