-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
180 lines (164 loc) · 4.44 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
const path = require('path');
const _ = require('lodash');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
// const TerserPlugin = require('terser-webpack-plugin')
const CompressionPlugin = require('compression-webpack-plugin');
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin")
const scalaVersion = require('./scala-version')
const scalaOutputPath = path.resolve(__dirname, `./modules/frontend/target/scala-${scalaVersion}`);
const devServerHost = '127.0.0.1';
const devBackendPort = 30099;
const devServerPort = 30190;
const devBackend = `http://127.0.0.1:${devBackendPort}`;
const devServer = {
hot: true,
firewall: false,
client: {
host: devServerHost,
port: devServerPort,
},
injectHot: true,
injectClient: true,
transportMode: 'ws',
public: `http://localhost:${devServerPort}`,
port: devServerPort,
host: devServerHost,
historyApiFallback: {
index: ''
},
proxy: {
'/api': {
target: devBackend,
changeOrigin: true,
ws: true
},
'/rpc': {
target: devBackend,
changeOrigin: true,
ws: true
}
},
};
const common = (mode) => ({
mode,
resolve: {
alias: {
'frontend-config': (mode === 'production') ?
path.resolve(__dirname, './modules/frontend-config/prod') :
path.resolve(__dirname, './modules/frontend-config/dev')
}
},
output: {
publicPath: '/',
filename: '[name].[hash].js',
library: 'app',
libraryTarget: 'var'
},
entry: [
path.resolve(__dirname, './modules/frontend/src/main/static/stylesheets/main.scss'),
path.resolve(__dirname, './modules/frontend/src/main/static/stylesheets/main.css')
],
module: {
rules: [
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'postcss-loader'],
},
{
test: /\.scss$/i,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'postcss-loader', 'sass-loader'],
},
{
test: /\.(png|jpg|woff|woff2|ttf|eot|svg|txt)$/i,
type: 'asset/resource'
}
]
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: './modules/frontend/src/main/static/html/index.html.ejs',
minify: false,
inject: 'head',
}),
new CopyWebpackPlugin({
patterns: [
{from: './modules/frontend/src/main/static/public', to: ''},
]
}),
new NodePolyfillPlugin()
]
})
const dev = {
devtool: 'cheap-module-source-map',
entry: [
path.resolve(__dirname, `${scalaOutputPath}/frontend-fastopt/main.js`),
],
plugins: [
new MiniCssExtractPlugin()
],
};
const prod = {
entry: [
path.resolve(__dirname, `${scalaOutputPath}/frontend-opt/main.js`),
],
// devtool: 'source-map',
optimization: {
minimize: false,
// minimizer: [new TerserPlugin()],
},
plugins: [
new CleanWebpackPlugin(),
new MiniCssExtractPlugin({
filename: '[name].[contenthash].css',
}),
new CompressionPlugin({
test: /\.(js|css|html|svg|json|woff|woff2)$/,
deleteOriginalAssets: false,
}),
new CompressionPlugin({
test: /\.(js|css|html|svg|woff|woff2)$/,
filename: '[path][base].br',
algorithm: 'brotliCompress',
compressionOptions: {
// zlib’s `level` option matches Brotli’s `BROTLI_PARAM_QUALITY` option.
level: 11,
},
minRatio: 0.8,
deleteOriginalAssets: false,
})
]
};
function customizer(objValue, srcValue) {
if (_.isArray(objValue)) {
return objValue.concat(srcValue);
}
}
function getConfig() {
switch (process.env.npm_lifecycle_event) {
case 'build':
case 'build:prod':
console.log('production build');
return _.mergeWith({}, common('production'), prod, customizer);
case 'build:dev':
console.log('development build');
return _.mergeWith({}, common('development'), dev, customizer);
case 'start:prod':
console.log('production dev server');
return _.mergeWith({}, common('production'), prod, {
devServer
}, customizer);
case 'start':
case 'start:dev':
default:
console.log('development dev server');
return _.mergeWith({}, common('development'), dev, {
devServer
}, customizer);
}
}
const config = getConfig()
module.exports = config