to use TailwindCss, we need craco, so the script should be
"start": "craco start ",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject"
},
to use antDesign-mobile, the script should be
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject"
},
How to run both at the same time?