mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-21 11:35:34 +01:00
Fix console warnings in notification content script (#2388)
This commit is contained in:
parent
5b825d0603
commit
8375d6ecbb
@ -105,7 +105,7 @@ const plugins = [
|
||||
process: "process/browser",
|
||||
}),
|
||||
new webpack.SourceMapDevToolPlugin({
|
||||
exclude: /content\/.*/,
|
||||
exclude: [/content\/.*/, /notification\/.*/],
|
||||
filename: "[file].map",
|
||||
}),
|
||||
];
|
||||
@ -129,7 +129,7 @@ const config = {
|
||||
minimize: true,
|
||||
minimizer: [
|
||||
new TerserPlugin({
|
||||
exclude: /content\/.*/,
|
||||
exclude: [/content\/.*/, /notification\/.*/],
|
||||
}),
|
||||
],
|
||||
splitChunks: {
|
||||
|
Loading…
Reference in New Issue
Block a user