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

416 阅读1分钟

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

个人博客: www.liangtongzhuo.com