-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.babel.js
182 lines (173 loc) · 4.95 KB
/
webpack.config.babel.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
import path from 'path';
import fs from 'fs';
require('dotenv').config();
const app = {
title: 'BEKB Investment Simulator',
short: 'BEKB Invest',
description: 'A Webapp for the BEKB',
colorbkg: '#cc0033',
color: '#cc0033',
};
import { DefinePlugin } from 'webpack';
class TailwindExtractor {
static extract(content) {
return content.match(/[A-Za-z0-9-_:\/]+/g) || [];
}
}
import HtmlWebpackPlugin from 'html-webpack-plugin';
import { CleanWebpackPlugin } from 'clean-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import workboxPlugin from 'workbox-webpack-plugin';
import WebpackPwaManifest from 'webpack-pwa-manifest';
import TerserJSPlugin from 'terser-webpack-plugin';
import OptimizeCSSAssetsPlugin from 'optimize-css-assets-webpack-plugin';
import glob from 'glob-all';
module.exports = (env, argv) => {
const dirDist = path.resolve(__dirname, 'dist');
const dirSrc = path.resolve(__dirname, 'src');
const dev = argv.mode !== 'production';
let serveHttps = false;
if (process.env.SSL_KEY && process.env.SSL_CRT && process.env.SSL_PEM) {
serveHttps = {
key: fs.readFileSync(process.env.SSL_KEY),
cert: fs.readFileSync(process.env.SSL_CRT),
ca: fs.readFileSync(process.env.SSL_PEM),
};
}
return {
optimization: {
minimizer: [new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({})],
},
entry: {
app: `${dirSrc}/index.js`,
},
devServer: {
contentBase: dirDist,
compress: true,
port: process.env.PORT || 8080,
https: serveHttps,
hot: true,
historyApiFallback: true,
},
output: {
path: dirDist,
filename: 'assets/[name]-[hash].js',
},
devtool: dev ? `cheap-module-eval-source-map` : undefined,
plugins: [
new CleanWebpackPlugin({
cleanStaleWebpackAssets: false,
}),
new MiniCssExtractPlugin({
filename: dev ? 'assets/[name].css' : 'assets/[name].[hash].css',
chunkFilename: dev
? 'assets/[name].[id].css'
: 'assets/[name].[id].[hash].css',
}),
new CopyWebpackPlugin([
{
from: 'src/assets/static',
to: 'assets/static',
},
]),
new HtmlWebpackPlugin({
title: app.title,
description: app.description,
template: 'src/index.html',
filename: './index.html',
chunksSortMode: 'none',
minify: dev
? false
: {
collapseWhitespace: true,
removeComments: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
useShortDoctype: true,
},
}),
...(!dev || process.env.GENERATE_SW === 'true' // only generate manifest and SW in prod build
? [
new WebpackPwaManifest({
name: app.title,
short_name: app.short,
description: app.description,
theme_color: app.color,
background_color: app.colorbkg,
crossorigin: 'use-credentials',
fingerprints: false,
icons: [
{
src: path.resolve(`${dirSrc}/assets/bekb-logo.png`),
sizes: [96, 128, 192, 256, 384, 512],
destination: path.join('assets', 'pwa-icon'),
ios: true,
purpose: 'maskable',
},
],
}),
new workboxPlugin.InjectManifest({
swSrc: './src/service-worker.js',
include: [/\.html$/, /\.js$/, /\.css$/],
maximumFileSizeToCacheInBytes: 5000000,
}),
]
: []),
new DefinePlugin({
IS_DEV: dev,
}),
],
module: {
rules: [
{
test: /\.svg$/,
exclude: /node_modules/,
loader: ['babel-loader', 'raw-loader'],
},
{
test: /\.(js|jsx)$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.(png|jpg|gif)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]',
},
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: dev,
//reloadAll: true,
},
},
'css-loader',
{
loader: 'postcss-loader',
options: {
plugins: () => [
require('postcss-nested'),
require('autoprefixer'),
],
},
},
],
},
],
},
resolve: {
extensions: ['.js', '.jsx'],
alias: {
'@app': `${dirSrc}/app/`,
'@utils': `${dirSrc}/utils/`,
},
},
};
};