11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
// https://tailwindcss.com/docs/configuration
|
|
module.exports = {
|
|
content: ['./index.php', './app/**/*.php', './resources/**/*.{php,vue,js}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {}, // Extend Tailwind's default colors
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|