/Renthing

Share your thing - nextjs13, tailwindCSS, typescript

Primary LanguageTypeScript

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

tailwindCSS

  • 설치
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init
  • postcss.config.js변경, tailwind.config.js변경
  • globals.css를 전부 지우고 이와같이 변경
@tailwind base;
@tailwind components;
@tailwind utilities;

html,
body,
:root{
  height: 100%;
}