-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
149 lines (145 loc) · 4.15 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
/* eslint-disable strict */
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
const zlib = require('zlib');
module.exports = (env, argv) => {
const pluginsToAdd = [];
const mode = argv.mode;
pluginsToAdd.push(
new HtmlWebpackPlugin({
template: './src/index.html',
filename: 'index.html'
})
);
pluginsToAdd.push(
new CopyWebpackPlugin({
patterns: [
{
from: './sdk-config.json',
to: './'
},
{
from: './assets/img/*',
to: './'
},
{
from: './assets/css/*',
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: './node_modules/@pega/constellationjs/dist/bootstrap-shell*',
to: './constellation/[name][ext]'
},
{
from: './node_modules/@pega/constellationjs/dist/lib_asset.json',
to: './constellation'
},
{
from: './node_modules/@pega/constellationjs/dist/constellation-core*',
to: './constellation/prerequisite/[name][ext]'
},
{
from: './assets/icons/*',
to: './constellation/icons/[name][ext]'
},
{
from: './node_modules/@pega/constellationjs/dist/js',
to: './constellation/prerequisite/js'
}
]
})
);
// Enable gzip and brotli compression
// Exclude constellation-core and bootstrap-shell files since
// client receives these files in gzip and brotli format
if (mode === 'production') {
pluginsToAdd.push(
new CompressionPlugin({
filename: '[path][base].gz',
algorithm: 'gzip',
test: /\.js$|\.ts$|\.css$|\.html$/,
exclude: /constellation-core*|bootstrap-shell*|531.*.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*|bootstrap-shell*|531.*.js/,
compressionOptions: {
params: {
[zlib.constants.BROTLI_PARAM_QUALITY]: 11
}
},
threshold: 10240,
minRatio: 0.8
})
);
}
// need to set mode to 'development' to get LiveReload to work
// and for debugger statements to not be stripped out of the bundle
return {
mode,
entry: {
app: './src/index.ts'
},
devServer: {
static: path.join(__dirname, 'dist'),
historyApiFallback: true,
host: 'localhost',
port: 3501,
open: false
},
devtool: mode === 'production' ? false : 'inline-source-map',
plugins: pluginsToAdd,
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist'),
publicPath: '/',
clean: true
},
module: {
rules: [
{
test: /\.ts[x]?$/,
use: 'ts-loader',
exclude: /node_modules/
},
{
test: /\.css$/,
include: path.resolve(__dirname, 'src'),
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' }
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
}
};
};