Tailwind CSS와 함께 Next.js 시작하기
테일윈드 CSS는 매우 인기 있는 개발자 친화적인 유틸리티 우선 CSS 프레임워크입니다. 테일윈드CSS를 사용해 본 적이 없다면 문서를 참조하세요. 프로젝트 만들기 아직 설정하지 않은 경우 새 Next.js 프로젝트를 생성하여 시작하세요. 가장 일반적인 방법은 Create Next App를 사용하는 것입니다. npx create-next-app@latest my-project --typescript --eslint cd my-project Tailwind CSS 설치하기 npm을 통해 Tailwind에 필요한 tailwindcss와 피어 종속 요소를 설치합니다. npm install -D tailwindcss postcss autoprefixer npx tailwindcss init -p 필수 패키지를 ..