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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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