我正在尝试深入研究 React 生态系统并在使用react-native-web
我的 React Native 应用程序时遇到问题。我在https://github.com/thedarklord1/testNativeWithWeb上托管了该应用程序。我使用 Redux Store 和 React Native 构建了一个非常简单的 POC 来构建计算器。Android 和 iOS 版本按预期执行。我面临的问题是,在尝试运行webpack-dev-server
时,react-native-web
用于网络,它失败并出现错误
ERROR in ./src/App.js
Module parse failed: /Users/abhishekkumar/Desktop/Credifiable/front_end/testNativeWithWeb/src/App.js Unexpected token (9:6)
You may need an appropriate loader to handle this file type.
| render() {
| return (
| <Provider store={store}>
| <AppContainer/>
| </Provider>
@ ./index.web.js 1:0-28
@ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./index.web.js
我对 React 和 WebPack 生态系统相当陌生,感谢任何帮助或指点。TIA。
编辑:我正在使用命令webpack-dev-server -d --config web/webpack.config.js --inline --hot --colors
来运行服务器。