From 8dcb60bb36552b1f28decb41ba3fbdc4f6f0a99c Mon Sep 17 00:00:00 2001 From: Joe Jarvis Date: Tue, 16 Mar 2021 18:30:33 -0400 Subject: [PATCH] Don't actually include browser-polyfill --- src/manifest.json | 5 +---- src/pages/options/options.html | 2 +- src/pages/popup/changelog.html | 2 +- webpack.config.js | 4 ++-- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/manifest.json b/src/manifest.json index 9b90769..eb5c9d2 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -8,10 +8,7 @@ "96": "icons/icon-96.png" }, "background": { - "scripts": [ - "browser-polyfill.min.js", - "background.bundle.js" - ] + "scripts": ["background.bundle.js"] }, "browser_action": { "default_popup": "changelog.html", diff --git a/src/pages/options/options.html b/src/pages/options/options.html index 2076e3c..6e956d6 100644 --- a/src/pages/options/options.html +++ b/src/pages/options/options.html @@ -3,7 +3,7 @@ - +
diff --git a/src/pages/popup/changelog.html b/src/pages/popup/changelog.html index 8968fb9..9ea73c0 100644 --- a/src/pages/popup/changelog.html +++ b/src/pages/popup/changelog.html @@ -3,7 +3,7 @@ - +
diff --git a/webpack.config.js b/webpack.config.js index 53011cc..7501e5b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -60,8 +60,8 @@ module.exports = { to: "_locales", toType: "dir" }, - { from: "node_modules/webextension-polyfill/dist/browser-polyfill.min.js" }, - { from: "node_modules/webextension-polyfill/dist/browser-polyfill.min.js.map" } + // { from: "node_modules/webextension-polyfill/dist/browser-polyfill.min.js" }, + // { from: "node_modules/webextension-polyfill/dist/browser-polyfill.min.js.map" } ] }) ],