npm i tailwindcss postcss-cli postcss-import --D
./node_modules/.bin/tailwind init tailwind.config.js
| { | |
| "extends": ["eslint:recommended", "plugin:prettier/recommended"], | |
| "rules": { | |
| "prettier/prettier": ["error", { "singleQuote": true }], | |
| "no-console": "off" | |
| }, | |
| "parserOptions": { | |
| "ecmaVersion": 9, | |
| "sourceType": "module", | |
| "ecmaFeatures": { |
| /* apply a natural box layout model to all elements, but allowing components to change */ | |
| html { | |
| box-sizing: border-box; | |
| } | |
| *, *:before, *:after { | |
| box-sizing: inherit; | |
| } |