Here are my scrips in package.json. I created a project using create-react-app and want to introduce tailwind.
"build:css": "postcss src/theme/tailwind.css -o src/assets/styles.css",
"watch:css": "postcss -w src/theme/tailwind.css -o src/assets/styles.css",
"build": "npm run build:css && react-scripts build",
"start": "npm run watch:css && react-scripts start",
when I run yarn start, the app is not started. Seems it stopped on watch. how can I have tailwind watch and start app?