Serving React from Django
Summary Serving in Steps ref Install Babel, Transpiler npm install --save-dev @babel/core # install presets and plugins for react npm install --save-dev @babel/preset-env @babel/preset-react Create .babelrc file in the react root dir To use the installed presets and plugins # automatic is added to avoid react not found error "presets": [ "@babel/preset-env", ["@babel/preset-react", "runtime": "automatic"] ] install, Webpack Note: while following the tutorial webpack-bundle-tracker version 1....