-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.web.shared.js
81 lines (80 loc) · 1.75 KB
/
webpack.web.shared.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
/**
* Webpack configuration base for handling the application's source code
*/
const webpack = require('webpack');
const path = require('path');
module.exports = {
node:{
child_process: 'empty',
fs: 'empty',
},
module: {
rules: [
{
test: /\.worker\.js$/,
use: {
loader: 'worker-loader',
options: { inline: true }
}
},
{
test: /\.js$/,
exclude: /node_modules\/(?!dot-prop)\/*/,
loader: 'babel-loader',
options: {
babelrc: true,
extends: path.join(process.cwd(), './.babelrc'),
cacheDirectory: true,
presets: ['@babel/preset-env']
}
},
// {
// test: /\.(woff|ttf|otf|eot|woff2)$/i,
// use: [
// {
// loader: 'file-loader',
// options: {
// query: {
// name:'assets/[name].[ext]'
// }
// }
// },
// ]
// },
{
test: /\.(jpe?g|png|gif|svg)$/i,
use: [
'url-loader?limit=10000',
{
loader: 'image-webpack-loader',
query: {
mozjpeg: {
progressive: true,
},
gifsicle: {
interlaced: false,
},
optipng: {
optimizationLevel: 7,
},
pngquant: {
quality: '65-90',
speed: 4,
},
},
},
]
},
{
test: /\.(scss|sass)$/,
use: ['style-loader', 'css-loader', 'sass-loader']
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
]
},
plugins: [
],
};