1. 프로젝트 생성

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

    Terminal
    meteor create my-projectcd my-project
  2. Tailwind CSS 설치

    tailwindcss와 그에 필요한 의존성을 npm으로 설치한 후, init 명령어를 실행하여 tailwind.config.jspostcss.config.js 파일을 생성하세요.

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

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

    tailwind.config.js
    /** @type {import('tailwindcss').Config} */
    module.exports = {
      content: [
        "./imports/ui/**/*.{js,jsx,ts,tsx}",
        "./client/*.html",
      ],
      theme: {
        extend: {},
      },
      plugins: [],
    }
    
  4. CSS에 Tailwind 지시자 추가

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

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

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

    Terminal
    npm run start
  6. 프로젝트에서 Tailwind 사용 시작

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

    App.jsx
    export const App = () => (
      <h1 className="text-3xl font-bold underline">
        Hello world!
      </h1>
    )