From 12597f282205889ee023b2b5d5f7df6d099c6551 Mon Sep 17 00:00:00 2001 From: Nishan Date: Thu, 16 Dec 2021 11:20:23 +0530 Subject: [PATCH] fix: add .web.jsx extension support (#32076) Co-authored-by: JJ Kasper --- examples/with-react-native-web/next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/with-react-native-web/next.config.js b/examples/with-react-native-web/next.config.js index 0cc8ae53e82be..0b2154dd451d6 100644 --- a/examples/with-react-native-web/next.config.js +++ b/examples/with-react-native-web/next.config.js @@ -7,6 +7,7 @@ module.exports = { } config.resolve.extensions = [ '.web.js', + '.web.jsx', '.web.ts', '.web.tsx', ...config.resolve.extensions,