forked from getlago/lago-front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
100 lines (95 loc) · 2.62 KB
/
webpack.prod.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
const path = require('path')
const webpack = require('webpack')
const { merge } = require('webpack-merge')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const DuplicatePackageCheckerPlugin = require('duplicate-package-checker-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const common = require('./webpack.common.js')
const PRODUCTION_MODE = 'production'
const config = {
mode: PRODUCTION_MODE,
optimization: {
splitChunks: {
chunks: 'all',
maxSize: 500000,
maxInitialRequests: 6,
},
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ['babel-loader'],
},
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.svg$/,
include: path.resolve(__dirname, 'src'),
use: [
{
loader: '@svgr/webpack',
options: {
svgoConfig: {
pluggins: [{ prefixIds: false, prefixClassNames: false }],
},
},
},
],
},
{
test: /\.(jpg|png|jpeg)$/,
include: path.resolve(__dirname, 'src'),
type: 'asset/inline',
},
{
test: /\.(js)$/i,
include: '/node_modules/',
use: [
{
loader: 'file-loader',
},
],
},
],
},
plugins: [
new HtmlWebpackPlugin({
title: process.env.APP_ENV === 'production' ? 'Lago' : 'Lago - Cloud',
template: path.join(__dirname, 'src', 'index.html'),
favicon:
process.env.APP_ENV === 'production'
? './src/public/images/favicon-prod.svg'
: './src/public/images/favicon-staging.svg',
}),
new webpack.SourceMapDevToolPlugin({
noSources: false,
filename: '[name].[chunkhash].js.map',
}),
],
resolve: {
alias: {
deepmerge: path.resolve(__dirname, 'node_modules', 'deepmerge'),
'lodash-es': 'lodash',
lodash: path.resolve(__dirname, 'node_modules', 'lodash'),
'react-is': path.resolve(__dirname, 'node_modules', 'react-is'),
'symbol-observable': path.resolve(__dirname, 'node_modules', 'symbol-observable'),
tslib: path.resolve(__dirname, 'node_modules', 'tslib'),
},
},
}
module.exports = (env) => {
if (env.analyseBundle) {
config.plugins.push(new BundleAnalyzerPlugin())
config.plugins.push(new DuplicatePackageCheckerPlugin())
}
return merge(common(env, PRODUCTION_MODE), config)
}