react 앱 설치 후
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init
명령어 각각 입력
// tailwind.config.js 파일에 아래 추가
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
// 최상위 css 파일에 아래 추가
@tailwind base;
@tailwind components;
@tailwind utilities;
'React & TypeScript' 카테고리의 다른 글
[React] input 값을 useState로 상태 관리 할 때 defaultValue를 왜 사용하면 안될까? (0) | 2024.11.15 |
---|---|
[TIL] zustand로 로그인 상태 유지 및 로그아웃 구현 (+supabase, typescript) + 수정 (4) | 2024.10.26 |
[TIL] Hydration 이란? (0) | 2024.08.20 |
[TIL] React에서 key가 필요한 이유가 뭘까? (1) | 2024.07.24 |
[TIL] supabase 연동 시 'url'과 'anone key'를 .env파일로 보안하는 방법 (0) | 2024.06.28 |