주요 변경사항
- Oxide 엔진으로 빌드 속도 10배 향상
- CSS-first 설정 (@theme 블록)
- Native CSS cascade layers 사용
@theme 블록
@import "tailwindcss";
@theme {
--color-primary: #3b82f6;
--font-sans: "Inter", sans-serif;
}주의사항
@layer 기반이므로 외부 CSS와의 우선순위 충돌에 주의해야 합니다.
@import "tailwindcss";
@theme {
--color-primary: #3b82f6;
--font-sans: "Inter", sans-serif;
}@layer 기반이므로 외부 CSS와의 우선순위 충돌에 주의해야 합니다.
댓글 0