From 1cf332d5e9a13fe6bb335edf41d15cad7f74b287 Mon Sep 17 00:00:00 2001 From: opensourceisg00d <113839774+opensourceisg00d@users.noreply.github.com> Date: Sun, 18 Sep 2022 16:08:57 +0300 Subject: [PATCH] docs: alternatives-to-ejecting - added `Craco` and `react-app-rewired ` packages --- docusaurus/docs/alternatives-to-ejecting.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docusaurus/docs/alternatives-to-ejecting.md b/docusaurus/docs/alternatives-to-ejecting.md index a7255aa938f..01327530fb6 100644 --- a/docusaurus/docs/alternatives-to-ejecting.md +++ b/docusaurus/docs/alternatives-to-ejecting.md @@ -4,3 +4,6 @@ title: Alternatives to Ejecting --- [Ejecting](available-scripts.md#npm-run-eject) lets you customize anything, but from that point on you have to maintain the configuration and scripts yourself. This can be daunting if you have many similar projects. In such cases instead of ejecting we recommend to _fork_ `react-scripts` and any other packages you need. [This article](https://auth0.com/blog/how-to-configure-create-react-app/) covers how to do it in depth. You can find more discussion in [this issue](https://github.com/facebook/create-react-app/issues/682). + + +In addition, the [craco](https://github.com/dilanx/craco) and the [react-app-rewired](https://github.com/timarney/react-app-rewired) package are useful for editing react configuration files without ejecting.