From bd67f2a663b9180f97f7f69790a427237874d367 Mon Sep 17 00:00:00 2001 From: Peter Piekarczyk Date: Thu, 9 Mar 2023 16:06:30 -0600 Subject: [PATCH] re-adds react-dom (#3263) --- packages/app-extension/webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app-extension/webpack.config.js b/packages/app-extension/webpack.config.js index 66f3f4d1c..d0402aae1 100644 --- a/packages/app-extension/webpack.config.js +++ b/packages/app-extension/webpack.config.js @@ -198,8 +198,8 @@ const options = { // // NOTE(peter): for whatever reason react is being installed in multiple places and breaking tamagui // // this was the best i could do to ensure it pulls the correct version until i figure out why. this is what's supposed to happen anyway // // if you find yourself here, run `ls node_modules/react` and if the folder exists, this stays, if it doesn't, you can safely remove - // react: path.resolve("../../node_modules/react"), - // "react-dom": path.resolve("../../node_modules/react-dom"), + react: path.resolve("../../node_modules/react"), + "react-dom": path.resolve("../../node_modules/react-dom"), "react-native$": "react-native-web", }, // Add support for web-based extensions so we can share code between mobile/extension