Files
sam-manage/tailwind.config.js

20 lines
395 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
colors: {
primary: '#570df8',
secondary: '#f000b8',
},
},
},
plugins: [
require('@tailwindcss/forms'),
// DaisyUI 완전 제거 - oklch() 사용 문제
],
}