1. 프로젝트 생성

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

    Terminal
    npx create-remix@latest my-projectcd my-project
  2. Tailwind CSS 설치

    tailwindcss를 npm으로 설치한 후, init 명령어를 실행하여 tailwind.config.tspostcss.config.js 파일을 생성하세요.

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

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

    tailwind.config.ts
    import type { Config } from 'tailwindcss'
    
    export default {
      content: ['./app/**/*.{js,jsx,ts,tsx}'],
      theme: {
        extend: {},
      },
      plugins: [],
    } satisfies Config
    
  4. Tailwind 지시어 추가

    ./app/tailwind.css 파일을 생성하고 Tailwind의 각 레이어에 대한 @tailwind 지시어를 추가하세요.

    tailwind.css
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
  5. CSS 파일 임포트

    새로 생성된 ./app/tailwind.css 파일을 ./app/root.tsx 파일에 임포트하세요.

    root.tsx
    import type { LinksFunction } from "@remix-run/node";
    import stylesheet from "~/tailwind.css?url";
    
    export const links: LinksFunction = () => [
      { rel: "stylesheet", href: stylesheet },
    ];
  6. 빌드 프로세스 시작

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

    Terminal
    npm run dev
  7. Tailwind 사용 시작

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

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