├── README.md
├── package.json
├── src
└── index.html
├── style.css
├── tailwind.config.js
└── tailwind.css
/README.md:
--------------------------------------------------------------------------------
1 | # TailwindCSS V2 Jit(Just in Time) Mode Template
2 | Run : npm run watch
3 | That's it; you can now begin working on your project by editing src/index.html.
4 | [Just in time docs](https://v2.tailwindcss.com/docs/just-in-time-mode)
5 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "template",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "tailwind.config.js",
6 | "scripts": {
7 | "build": "npx tailwindcss -i tailwind.css -o style.css --minify ",
8 | "watch": "npx tailwindcss -i tailwind.css -o style.css -w --minify "
9 | },
10 | "keywords": [],
11 | "author": "",
12 | "license": "ISC"
13 | }
14 |
--------------------------------------------------------------------------------
/src/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |