일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 딥러닝공부
- 자바
- 비용함수
- 머신러닝 강좌
- 경사하강법
- python강좌
- JAVA강좌
- 자바강좌
- 머신러닝공부
- 머신러닝
- C언어
- c언어 오목
- 비지도학습
- feature scaling
- 파이썬강의
- 자바시작하기
- 지도학습
- java
- unsupervised learning
- Gradient Descent
- 파이썬강좌
- 선형회귀
- 백준 알고리즘
- 효묘블로그
- supervised learning
- 인공지능
- acmicpc.net
- 딥러닝
- Python강의
- 머신러닝 강의
Archives
- Today
- Total
컴공과컴맹효묘의블로그
Tailwind 설정하기 본문
반응형
create-react-app
npx create-react-app project_name --template typescript
Tailwind 설치
npm install -D tailwindcss postcss autoprefixer
create config file
npx tailwindcss init -p
tailwind.config.js 수정
//tailwind.config.js
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
change index.css
@tailwind base;
@tailwind components;
@tailwind utilities;
반응형
'개발' 카테고리의 다른 글
React에서의 window event listener 주의점. (0) | 2022.09.18 |
---|---|
[Typescript]react-router-dom-v6사용 useParams useLocation (0) | 2022.06.22 |
Comments