From 94c9aa74f82ce70412ee99e7e989930d226ef850 Mon Sep 17 00:00:00 2001 From: hensm Date: Wed, 28 Nov 2018 09:02:31 +0000 Subject: [PATCH] Fix popup .jsx extension --- ext/src/popup/{index.js => index.jsx} | 0 ext/webpack.config.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename ext/src/popup/{index.js => index.jsx} (100%) diff --git a/ext/src/popup/index.js b/ext/src/popup/index.jsx similarity index 100% rename from ext/src/popup/index.js rename to ext/src/popup/index.jsx diff --git a/ext/webpack.config.js b/ext/webpack.config.js index b9cc25b..034b62a 100755 --- a/ext/webpack.config.js +++ b/ext/webpack.config.js @@ -11,7 +11,7 @@ const outputPath = path.resolve(__dirname, "../dist/ext/unpacked"); module.exports = (env) => ({ entry: { "main" : `${includePath}/main.js` - , "popup/bundle" : `${includePath}/popup/index.js` + , "popup/bundle" : `${includePath}/popup/index.jsx` , "options/bundle" : `${includePath}/options/index.jsx` , "shim/bundle" : `${includePath}/shim/index.js` , "content" : `${includePath}/content.js`