Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

tailwindcss

npx tailwindcss init

tailwind.config.js

;; file: package.json { "name": "app", "version": "0.0.1", "scripts": { "start": "npx shadow-cljs -d cider/cider-nrepl:0.44.0 watch :app", "styles-watch": "npx tailwindcss -i src/styles/styles.css -o resources/public/css/styles.css --watch", "styles": "npx tailwindcss -i src/styles/styles.css -o resources/public/css/styles.css", "build": "npx shadow-cljs release :app && npm run styles", "test": "echo \"Error: no test specified\" && exit 1" }, "devDependencies": { "shadow-cljs": "2.26.2" }, "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", "tailwindcss": "^3.4.0" } }