Replies: 1 comment 1 reply
-
I don't think you can add any version related arguments to |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As per the title, the default
npx create-react-app app-name
, will install react-17, react-dom-17, react-scripts-4.
I want to use CRA with older versions react-16, react-dom-16, react-scripts-3
This almost does the trick,
npm init react-app app-name --scripts-version 3.4.4
But it gives an error :
Cannot find module 'cra-template'
, as well as still installing react-17, react-dom-17.
Beta Was this translation helpful? Give feedback.
All reactions