I want to integrate tailwind.css in my react.js app but after doing some steps while I go to run my app it shows error like I have attach picture in the following.
["scripts": {
"start": "npm run watch:css && react-scripts start",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:css": "postcss src/components/books/CSS/talwind.css -o src/components/books/CSS/main.css",
"watch:css": "postcss src/components/books/CSS/talwind.css -o src/components/books/CSS/main.css"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": \[
">0.2%",
"not dead",
"not op_mini all"
\],
"development": \[
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
\]
},
"devDependencies": {
"autoprefixer": "^10.0.1",
"postcss-cli": "^8.2.0",
"tailwindcss": "^1.9.6"
}
}][1]
Here is my terminal snippet that show what error exactly I'm facing.