diff --git a/webpack/production/background.prod.config.js b/webpack/production/background.prod.config.js index 33f7238..d0ded49 100644 --- a/webpack/production/background.prod.config.js +++ b/webpack/production/background.prod.config.js @@ -30,8 +30,6 @@ const backgroundProdConfig = { name: 'background', entry: './src/background/background.js', mode: 'production', - devtool: 'cheap-module-source-map', - target: 'web', node: false, output: { path: path.join(__dirname, '../../public/background'), diff --git a/webpack/production/contentScript.prod.config.js b/webpack/production/contentScript.prod.config.js index 2807cbf..3703684 100644 --- a/webpack/production/contentScript.prod.config.js +++ b/webpack/production/contentScript.prod.config.js @@ -34,8 +34,6 @@ const contentScriptProdConfig = { name: 'contentScriptGlobal', entry: './src/content/content_script.js', mode: 'production', - devtool: 'cheap-module-source-map', - target: 'web', node: false, output: { path: path.join(__dirname, '../../public/content'), diff --git a/webpack/production/installPage.prod.config.js b/webpack/production/installPage.prod.config.js index 1c29276..f5c11b0 100644 --- a/webpack/production/installPage.prod.config.js +++ b/webpack/production/installPage.prod.config.js @@ -39,8 +39,6 @@ const installPageProdConfig = { contentPageStyles: './src/content/styles/content_script.scss' }, mode: 'production', - devtool: 'cheap-module-source-map', - target: 'web', node: false, output: { path: path.join(__dirname, '../../public/installPage'), diff --git a/webpack/production/optionsPage.prod.config.js b/webpack/production/optionsPage.prod.config.js index d4f8c07..3a2fd29 100644 --- a/webpack/production/optionsPage.prod.config.js +++ b/webpack/production/optionsPage.prod.config.js @@ -39,8 +39,6 @@ const optionsPageProdConfig = { contentPageStyles: './src/content/styles/content_script.scss' }, mode: 'production', - devtool: 'cheap-module-source-map', - target: 'web', node: false, output: { path: path.join(__dirname, '../../public/optionsPage'),