From 9df27f081355e19798cc5167cf370965c7102c46 Mon Sep 17 00:00:00 2001 From: Michael Kochell <6913320+mickmister@users.noreply.github.com> Date: Mon, 3 Oct 2022 23:56:44 -0400 Subject: [PATCH] Use ReactDOM webpack external (#79) --- webapp/webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/webpack.config.js b/webapp/webpack.config.js index 4411caa..8206ddc 100644 --- a/webapp/webpack.config.js +++ b/webapp/webpack.config.js @@ -81,6 +81,7 @@ module.exports = { }, externals: { react: 'React', + 'react-dom': 'ReactDOM', redux: 'Redux', 'react-redux': 'ReactRedux', 'prop-types': 'PropTypes',