-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.common.js
171 lines (163 loc) · 3.92 KB
/
webpack.config.common.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// Requiring dependencies
// ================================================================================
import path from 'path';
import webpack from 'webpack';
import CaseSensitivePathsPlugin from 'case-sensitive-paths-webpack-plugin';
import config from 'config';
// Please read the following link if
// you have no idea how to use this feature
// https://github.com/motdotla/dotenv
require('dotenv').config({ silent: true });
// trace which loader is deprecated
// feel free to remove that if you don't need this feature
process.traceDeprecation = false;
// Environment variable injection
// ================================================================================
import packageJSON from './package.json'
process.env.PACKAGE_VERSION = packageJSON.version
// Defining config variables
// ================================================================================
export const BUILD_PATH = path.join(__dirname, `docroot${config.get('publicPath')}`)
const COMMON_LOADERS = [
{
test: /\.(?:ico|gif|png|jpg|jpeg|webp|svg)$/i,
use: [
{
loader: 'file-loader',
options: {
hash: 'sha512',
digest: 'hex',
name: `${config.get('assetPath')}/[hash].[ext]`,
}
},
{
loader: 'image-webpack-loader',
options: {
query: {
mozjpeg: {
progressive: true,
},
gifsicle: {
interlaced: true,
},
optipng: {
optimizationLevel: 7,
},
pngquant: {
quality: '65-90',
speed: 4
}
},
}
}
],
}, {
test: /\.(js|jsx)?$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
cacheDirectory: true,
plugins: [
'transform-runtime',
'transform-decorators-legacy',
'syntax-dynamic-import'
],
},
},
{
test: /\.woff(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/font-woff',
name: `${config.get('assetPath')}/[name].[ext]`,
}
}
],
},
{
test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/font-woff',
name: `${config.get('assetPath')}/[name].[ext]`,
}
}
],
},
{
test: /\.[ot]tf(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/octet-stream',
name: `${config.get('assetPath')}/[name].[ext]`,
}
}
],
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/vnd.ms-fontobject',
name: `${config.get('assetPath')}/[name].[ext]`,
}
}
],
}
];
// Export
// ===============================================================================
export const JS_SOURCE = config.get('jsSourcePath');
export default {
output: {
path: path.join(__dirname, 'docroot'),
},
performance: {
hints: process.env.NODE_ENV === 'production' ? "warning" : false
},
optimization: {
splitChunks: {
chunks: 'all'
}
},
resolve: {
extensions: ['.js', '.jsx', '.css'],
modules: [
path.join(__dirname, 'src'),
path.join(__dirname, 'assets'),
path.join(__dirname, JS_SOURCE),
"node_modules"
],
},
plugins: [
new webpack.IgnorePlugin(/vertx/), // https://github.com/webpack/webpack/issues/353
new CaseSensitivePathsPlugin(),
],
module: {
rules: COMMON_LOADERS,
},
node: {
console: true,
fs: 'empty',
net: 'empty',
tls: 'empty'
},
externals: {
console:true,
fs:'{}',
tls:'{}',
net:'{}'
},
};