아직 React 앱이 없다면 앱을 만드세요.
npx create-react-app my-app cd my-app
npm install -D tailwindcss postcss autoprefixer
그런 다음 Tailwind CSS를 초기화하세요.
npx tailwindcss init
이렇게 하면 프로젝트에 tailwind.config.js 파일이 생성됩니다.
/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", // Scan these files for Tailwind classes ], theme: { extend: {}, }, plugins: [], };
@tailwind base; @tailwind components; @tailwind utilities;
import './index.css';
npm start
위 내용은 React JS 프로젝트에서 Tailwind CSS 설정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!