From 4fb90fa45b82616e8e8b27fb5b6a8a3d34404c91 Mon Sep 17 00:00:00 2001 From: Marc Glasser Date: Tue, 6 Oct 2020 15:16:32 -0700 Subject: [PATCH] fix master --- webpack.common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.common.js b/webpack.common.js index 691a0160fc3aa..02f4efae73d62 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -86,6 +86,6 @@ module.exports = { // without this, web will try to use native implementations and break in not very obvious ways. // This is also why we have to use .website.js for our own web-specific files... // Because desktop also relies on "web-specific" module implementations - extensions: ['.web.js', '.js', (platform === 'web') ? '.website.js' : '.desktop.js'], + extensions: ['.web.js', '.js', '.jsx', (platform === 'web') ? '.website.js' : '.desktop.js'], }, };