tailwindcss 설치
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
src, app 폴더 없을 경우 삭제해도 상관없음.
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
안의 내용 전부 삭제 후 입력.
@tailwind base;
@tailwind components;
@tailwind utilities;
module.exports = {
plugins: {
tailwindcss: { config: "./tailwind.config.js" },
autoprefixer: {},
},
};