Hello I’m stuck on this lesson: https://www.codecademy.com/paths/web-development/tracks/front-end-applications-with-react/modules/ravenous-part-one/articles/how-to-create-a-react-app
I do everything as it says:
run command prompt in any folder and type: npm install -g create-react-app
I get this answer:
$ npm install -g create-react-app
Then I type this command: $ create-react-app project1
Then I enter these commands:
cd project1
npm start
And get an error:
project1@0.1.0 start E:!Сайты\react_app\project1
react-scripts start
Failed to compile.
Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.
deleted all my logs
I have found a solution
Did as it says in create-react-app documentaion:
npx create-react-app my-app
cd my-app
npm start