1. 프로젝트 생성

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

    Terminal
    ng new my-projectcd my-project
  2. Tailwind CSS 설치

    npm을 통해 tailwindcss를 설치하고, init 명령어를 실행하여 tailwind.config.js 파일을 생성하세요.

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

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

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

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

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

    ng serve로 빌드 프로세스를 실행하세요.

    Terminal
    ng serve
  6. 프로젝트에서 Tailwind 사용 시작

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

    app.component.html
    <h1 class="text-3xl font-bold underline">
      Hello world!
    </h1>