我正在学习从create-react-app
切换到babel
和webpack
。我使用了一个适用于教程代码的设置,在我开始工作之后我在我的应用程序上尝试了它,但是我收到了一个错误:
Module build failed: SyntaxError: C:/App/smodin-post-writer-no-cra/src/components/UserSettings.js: Unexpected token (7:10)
_confirm = async () => {
| ^
73 | const { name, email, password } = this.state
74 | if (this.state.login) {
75 | const result = await this.props.signinUserMutation({
我的预设为"presets" : ["es2015", "react"]
。应正确安装所有依赖项。
为什么我收到此错误的任何想法?
注意:对应用程序使用npm run eject
并以这种方式运行它可行,但我不需要。