1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Fix console warnings in notification content script (#2388)

This commit is contained in:
Oscar Hinton
2022-02-15 15:09:02 +01:00
committed by GitHub
parent 5b825d0603
commit 8375d6ecbb

View File

@@ -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: {