tailwindcss가 3.0으로 오면서 purge옵션이 content로 옮겨갔기 때문에 뜨는 경고.
/** @type {import('tailwindcss').Config} */
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
extend: {
fontFamily: {
sans: ['Poppins', 'Helvetica', 'sans-serif'],
},
colors: {
base: '#1e1e2d',
},
},
},
plugins: [],
};
위가 기존, 아래가 수정된 tailwin.config.js
이다.
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
extend: {
fontFamily: {
sans: ['Poppins', 'Helvetica', 'sans-serif'],
},
colors: {
base: '#1e1e2d',
},
},
},
plugins: [],
};
빌드 시에 모든 tailwindcss 클래스들을 포함하는 것이 아니라 해당 경로에서 쓰이는 클래스들만 포함하는 최적화 옵션이다.
'기타' 카테고리의 다른 글
REST API 참고 링크 (0) | 2024.04.05 |
---|---|
[Terraform] ECS circuit breaker 설정 (0) | 2024.04.02 |
SOLID 원칙 4분만에 알아보는 좋은 영상 (0) | 2024.03.28 |
오른쪽 Command 키로 한영 변환하기 (0) | 2023.12.31 |
.git pre-commit 훅에서 커밋 메시지 가져오기 (0) | 2023.07.27 |
댓글