1.我在react工程中想集成react-web这个框架,于是按照文档给的方式去做:
可是当我加入:
new HasteResolverPlugin({
platform: 'web',
nodeModules: ['react-web']
}),
执行webpack-dev-server就报:
ERROR in ./~/react-web/package.json
Module parse failed: /Users/izijia/Desktop/React/ReactNative/React_Start/node_modules/react-web/package.json Unexpected token (2:9)
You may need an appropriate loader to handle this file type.
SyntaxError: Unexpected token (2:9)
at Parser.pp$4.raise (/Users/izijia/Desktop/React/ReactNative/React_Start/node_modules/acorn/dist/acorn.js:2221:15)
请问这是什么情况,该如何处理?
已解决,重新,按照文档一步一步搞定了