ERROR in Entry module not found Error Can't resolve 'babel' in ' Use


  //babel 的配置, ES6 与React
  module: {
    loaders: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: 'babel-loader', //修改这里, 原来写的是babel。 
        query: {
          presets: ['es2015','react']
        }
      }
    ]
  }
复制代码

个人博客: www.liangtongzhuo.com

转载于:https://juejin.im/post/5a31f18d6fb9a044fb07c603

你可能感兴趣的:(ERROR in Entry module not found Error Can't resolve 'babel' in ' Use)