Reputation: 41
I am a new Developer trying to Learn React , so in this process I am creating multiple react projects So I have created react projects using npx create-react-app , so every time I create react app , it takes a long time create it , is there any way , to speed up the creation of react app using npx create-react-app, as I am creating lot of different apps for learning purposes
Upvotes: 2
Views: 1199
Reputation: 1454
Issue is reported here and added to next milestone.
If you want temporary patch you can follow this comment
node_modules/react-scripts/config/webpack.config.js
new ESLintPlugin({
cache: true,
...
})
yarn patch-package react-scripts
Remove the patch later after fix.
Upvotes: 1