1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

Define Angular CLI globals to support tree shaking (#2450)

This commit is contained in:
Oscar Hinton
2022-03-22 09:58:17 +01:00
committed by GitHub
parent b54cc6ec8a
commit 0cd7b4dff5

View File

@@ -125,6 +125,15 @@ const config = {
minimizer: [ minimizer: [
new TerserPlugin({ new TerserPlugin({
exclude: [/content\/.*/, /notification\/.*/], exclude: [/content\/.*/, /notification\/.*/],
terserOptions: {
// Replicate Angular CLI behaviour
compress: {
global_defs: {
ngDevMode: false,
ngI18nClosureMode: false,
},
},
},
}), }),
], ],
splitChunks: { splitChunks: {