vue tailwind 사용하기 / 최신버전이 안될경우
문제인식2025-03-13 현재 최신 버전 으로 설치하면 동작이 안되네요1년전에 잘되던 과거버전으로 설치하기 위한 작업 순서를 정리하였습니다. 특정 버전 모듈 설치npm install -D tailwindcss@3.4.1npm install -D autoprefixer@10.4.18npm install -D postcss@8.4.35yarn installtailwind.config.js 파일 생성/** @type {import('tailwindcss').Config} \*/module.exports = {purge: ["./index.html", "./src/**/\*.{vue,js,ts,jsx,tsx}"],content: [],theme: {container: {center: true,},extend:..