- Tailwind CSS 4.x → 3.4.17 다운그레이드 (DaisyUI 호환성) - @tailwindcss/postcss 제거, 표준 postcss 설정으로 변경 - vite.config.js에서 @tailwindcss/vite 제거 - DaisyUI 5.5.5 정상 빌드 확인 (74.82 KB) - CSS 파일에 .btn, .card 등 DaisyUI 클래스 포함 확인
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
import { defineConfig } from 'vite';
|
|
import laravel from 'laravel-vite-plugin';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
laravel({
|
|
input: ['resources/css/app.css', 'resources/js/app.js'],
|
|
refresh: true,
|
|
}),
|
|
],
|
|
});
|