1. 프로젝트 생성

    아직 설정하지 않았다면 새로운 Vite 프로젝트를 생성하세요. 가장 일반적인 방법은 Create Vite를 사용하는 것입니다.

    터미널
    npm create vite@latest my-project -- --template reactcd my-project
  2. Tailwind CSS 설치

    tailwindcss와 그 동반 의존성을 설치한 후, tailwind.config.jspostcss.config.js 파일을 생성하세요.

    터미널
    npm install -D tailwindcss postcss autoprefixernpx tailwindcss init -p
  3. 템플릿 경로 설정

    tailwind.config.js 파일에 모든 템플릿 파일의 경로를 추가하세요.

    tailwind.config.js
    /** @type {import('tailwindcss').Config} */
    export default {
      content: [
        "./index.html",
        "./src/**/*.{js,ts,jsx,tsx}",
      ],
      theme: {
        extend: {},
      },
      plugins: [],
    }
    
  4. Tailwind 지시어 추가

    Tailwind의 각 레이어에 대한 @tailwind 지시어를 ./src/index.css 파일에 추가하세요.

    index.css
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
  5. 빌드 프로세스 시작

    npm run dev로 빌드 프로세스를 실행하세요.

    터미널
    npm run dev
  6. Tailwind 사용 시작

    Tailwind의 유틸리티 클래스를 사용하여 콘텐츠를 스타일링하세요.

    App.jsx
    export default function App() {
      return (
        <h1 className="text-3xl font-bold underline">
          Hello world!
        </h1>
      )
    }