Module not found: Can't resolve 'ReactDOM' Module not found: Can't resolve 'ReactDOM' reactjs reactjs

Module not found: Can't resolve 'ReactDOM'


Try

externals: { 'react': {commonjs: 'react'}, 'react-dom': {commonjs: 'react-dom'}}

https://webpack.js.org/configuration/externals/#object


Webpack is not resolving .js files. Add this to your webpack.config.js.

resolve: {    extensions: [".ts", ".tsx", ".js", ".jsx"]},

Via this answer.