How to use create-react-app with an older React version?

后端 未结 3 954
抹茶落季
抹茶落季 2021-02-04 03:45

When using create-react-app with custom-react-scripts I always end up with React 16 (latest) installed. Is there a way to create a new project with an older version, like React

3条回答
  •  终归单人心
    2021-02-04 03:53

    Specify your script version while create project

    sudo npm init react-app appname --scripts-version 1.0.13

    its working for me

提交回复
热议问题