Skip to content

Instantly share code, notes, and snippets.

@sudarshang
Created May 5, 2020 16:05
Show Gist options
  • Save sudarshang/b8501cea83d64df1ff4e8d2e4ec328ff to your computer and use it in GitHub Desktop.
Save sudarshang/b8501cea83d64df1ff4e8d2e4ec328ff to your computer and use it in GitHub Desktop.
tailwind create-react-app
"scripts": {
"start": "yarn start:css && react-scripts start",
"build": "yarn build:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start:css": "tailwindcss build src/css/tailwind.css -o src/css/main.css",
"build:css": "env NODE_ENV=production tailwindcss build src/css/tailwind.css -o src/css/main.css",
"watch:css": "tailwindcss build src/css/tailwind.css -o src/css/main.css --watch"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment