설치 참고 문서 : https://tailwindcss.com/docs/guides/vite 1. Tailwind CSS 라이브러리 추가 및 설정 파일 생성npm install -D tailwindcss postcss autoprefixernpx tailwindcss init -p2. 명령어 실행 후 tailwind.config.js 파일이 생성되면 content 배열 내 다음과 같이 코드 추가/** @type {import('tailwindcss').Config} */export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: {}, }, plugins: [],} ..