ERROR in ./ClientApp/Client.js Module build failed (from ./node_modules/babel-loader/lib/index.js):
Error: Plugin/Preset files are not allowed to export objects, only functions.
{
"name": "misreact",
"version": "1.0.0",
"description": "",
"path": "^0.12.7",
"main": "HelloWorld.js",
"dependencies": {
"@babel/core": "^7.1.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"webpack-dev-server": "^3.1.10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "webpack-dev-server --hot"
},
"author": "",
"license": "ISC"
}
Babel 7you need to install@babel/envand@babel/preset-react- Agneynpm install babel-loader @babel/core @babel/preset-env @babel/preset-reactadd to: ".babelrc"-file{ "presets": [ "@babel/preset-env", "@babel/preset-react" ] }, cheers! - Jimi Pajala--dev-flag when installing these compiler stuff since you DO NOT want them in your final bundle. - Jimi Pajala