-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
230 lines (225 loc) · 6.63 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const LiveReloadPlugin = require('@kooneko/livereload-webpack-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
const zlib = require('zlib');
module.exports = (env, argv) => {
const pluginsToAdd = [];
const webpackMode = argv.mode;
pluginsToAdd.push(
new HtmlWebpackPlugin({
template: './src/index.html',
filename: 'index.html'
})
);
pluginsToAdd.push(
new HtmlWebpackPlugin({
template: './src/company.html',
filename: 'company.html'
})
);
pluginsToAdd.push(
new HtmlWebpackPlugin({
template: './src/support.html',
filename: 'support.html'
})
);
pluginsToAdd.push(
new HtmlWebpackPlugin({
template: './src/products.html',
filename: 'products.html'
})
);
pluginsToAdd.push(
new HtmlWebpackPlugin({
template: './src/contact.html',
filename: 'contact.html'
})
);
pluginsToAdd.push(
new CopyWebpackPlugin({
patterns: [
{
from: './sdk-config.json',
to: './'
},
{
from: './sdk-local-component-map.js' /* New SDK packaging expects this local component map to be included; to be generated by DXCB */,
to: './'
},
{
from: './node_modules/@pega/auth/lib/oauth-client/authDone.html',
to: './auth.html'
},
{
from: './node_modules/@pega/auth/lib/oauth-client/authDone.js',
to: './'
},
{
from: './assets/icons/*',
to() {
return Promise.resolve('constellation/icons/[name][ext]');
}
},
{
from: './assets/css/*',
to: './'
},
{
from: './assets/img/*',
to: './'
},
{
from: './assets/css/*',
to: './'
},
{
from: './node_modules/tinymce',
to: './tinymce'
},
{
from: './node_modules/@pega/constellationjs/dist/bootstrap-shell.js',
to: './constellation'
},
{
from: './node_modules/@pega/constellationjs/dist/bootstrap-shell.*.*',
to() {
return Promise.resolve('constellation/[name][ext]');
}
},
{
from: './node_modules/@pega/constellationjs/dist/lib_asset.json',
to: './constellation'
},
{
from: './node_modules/@pega/constellationjs/dist/constellation-core.*.*',
to() {
return Promise.resolve('constellation/prerequisite/[name][ext]');
},
globOptions: {
ignore: webpackMode === 'production' ? ['**/constellation-core.*.map'] : undefined
}
}
]
})
);
// Enable gzip and brotli compression
// Exclude constellation-core and bootstrap-shell files since
// client receives these files in gzip and brotli format
pluginsToAdd.push(
new CompressionPlugin({
filename: '[path][base].gz',
algorithm: 'gzip',
test: /\.js$|\.ts$|\.css$|\.html$/,
exclude: /constellation-core.*.js|bootstrap-shell.js/,
threshold: 10240,
minRatio: 0.8
})
);
pluginsToAdd.push(
new CompressionPlugin({
filename: '[path][base].br',
algorithm: 'brotliCompress',
test: /\.(js|ts|css|html|svg)$/,
exclude: /constellation-core.*.js|bootstrap-shell.js/,
compressionOptions: {
params: {
[zlib.constants.BROTLI_PARAM_QUALITY]: 11
}
},
threshold: 10240,
minRatio: 0.8
})
);
if (webpackMode === 'development') {
// In development mode, add LiveReload plug
// When run in conjunction with build-with-watch,
// This will reload the browser when code is changed/re-compiled
const liveReloadOptions = {
protocol: 'http',
appendScriptTag: true,
delay: 1000,
hostname: 'localhost'
};
pluginsToAdd.push(new LiveReloadPlugin(liveReloadOptions));
}
// need to set mode to 'development' to get LiveReload to work
// and for debugger statements to not be stripped out of the bundle
initConfig = {
mode: 'development',
entry: {
app: './src/index.tsx'
},
devServer: {
static: path.join(__dirname, 'dist'), // was called contentBase in earlier versions
historyApiFallback: true,
host: 'localhost',
port: 3502,
open: false
},
devtool: argv.mode === 'production' ? false : 'inline-source-map',
plugins: pluginsToAdd,
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
},
{
test: /\.jsx?$/,
use: 'ts-loader',
exclude: /node_modules/
},
{
test: /\.css$/,
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'src/app'),
path.resolve(__dirname, 'node_modules/react-datepicker'),
path.resolve(__dirname, 'node_modules/@pega/react-sdk-components/lib') /* needed to resolve CSS files in new SDK packaging */
],
use: ['style-loader', 'css-loader']
},
{
test: /\.s[a|c]ss$/,
use: [{ loader: 'style-loader' }, { loader: 'css-loader' }, { loader: 'sass-loader' }]
},
{ test: /\.(png|gif|jpg|cur)$/i, loader: 'url-loader', options: { limit: 8192 } },
{
test: /\.woff2(\?v=[0-9]\.[0-9]\.[0-9])?$/i,
loader: 'url-loader',
options: { limit: 10000, mimetype: 'application/font-woff2' }
},
{
test: /\.woff(\?v=[0-9]\.[0-9]\.[0-9])?$/i,
loader: 'url-loader',
options: { limit: 10000, mimetype: 'application/font-woff' }
},
{
test: /\.(ttf|eot|svg|otf)(\?v=[0-9]\.[0-9]\.[0-9])?$/i,
loader: 'file-loader'
},
{
test: /\.(d.ts)$/ /* latest react-sdk-components needs to ignore compiling .d.ts and .map files */,
loader: 'null-loader'
},
{
test: /\.(map)$/ /* latest react-sdk-components needs to ignore compiling .d.ts and .map files */,
loader: 'null-loader'
}
]
},
/* optimization: { splitChunks: { chunks: "all", minSize: 600000, maxSize: 200000} }, */
resolve: {
extensions: ['.tsx', '.ts', '.js', '.jsx']
}
};
return initConfig;
};