git clone https://github.com/developermithu/tailwindcss-boilerplate.git
cd tailwindcss-boilerplate
yarn install or npm install
yarn dev or npm run dev
yarn prod or npm run prod (for minify css)
Delete the .git hidden file manually or by running rm -rf .git and for checking current repository run git remote -v
To check files are formatted or not run npx prettier --check src and npx prettier --write src for formatting. After running npx prettier --write src it will automatically format the code everytime after on save.
npx prettier --check src
npx prettier --write src
npx prettier --write input.css

