-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.common.prod.js
97 lines (95 loc) · 2.96 KB
/
webpack.common.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
const TerserPlugin = require('terser-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const { transformManifest } = require('./webpack-utils');
const Dotenv = require('dotenv-webpack');
const { sentryWebpackPlugin } = require('@sentry/webpack-plugin');
require('dotenv-defaults').config({
path: './.env',
encoding: 'utf8',
defaults: process.env.BUILD_DEV_PREVIEW === 'true' ? './.env.developerpreview' : './.env.defaults'
});
const hasSentryReleaseConfig =
!!process.env.SENTRY_AUTH_TOKEN && !!process.env.SENTRY_ORG && !!process.env.SENTRY_PROJECT;
module.exports = () => ({
mode: 'production',
devtool: 'source-map',
plugins: [
...(hasSentryReleaseConfig
? [
sentryWebpackPlugin({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
sourcemaps: {
filesToDeleteAfterUpload: ['**/*.js.map']
},
telemetry: false,
url: 'https://sentry.io/'
})
]
: []),
new Dotenv({
path: '.env',
safe: false,
silent: false,
defaults: process.env.BUILD_DEV_PREVIEW === 'true' ? '.env.developerpreview' : true,
systemvars: true,
allowEmptyValues: true
}),
new CopyPlugin({
patterns: [
{
from: 'manifest.json',
to: '../manifest.json',
transform: (content) => transformManifest(content, 'production')
}
]
})
],
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
exclude: /(node_modules)/,
minify: TerserPlugin.swcMinify,
// the following options are passed to SWC https://swc.rs/docs/configuration/minification
// Only enable what we need to speedup the build process
terserOptions: {
compress: {
drop_console: process.env.DROP_CONSOLE_IN_PRODUCTION
? process.env.DROP_CONSOLE_IN_PRODUCTION === 'true'
: true,
drop_debugger: true,
unused: true,
arrows: false,
booleans: false,
collapse_vars: false,
comparisons: false,
computed_props: false,
conditionals: false,
defaults: false,
directives: false,
evaluate: false,
hoist_props: false,
if_return: false,
join_vars: false,
loops: false,
negate_iife: false,
properties: false,
sequences: false,
side_effects: false,
switches: false,
toplevel: false,
typeofs: false
},
mangle: {
keepFnNames: true,
// Required for extension messaging, as it ends up using different mangled
// class name for the same class in service worker and UI scripts
keep_classnames: true
}
}
})
]
}
});