2023-03-17 14:33:48 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
module.exports = {
|
|
|
|
|
content: [
|
|
|
|
|
"./resources/**/*.blade.php",
|
|
|
|
|
"./resources/**/*.js",
|
2023-05-10 13:49:56 +00:00
|
|
|
"./resources/**/*.vue",
|
2023-03-17 14:33:48 +00:00
|
|
|
],
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {},
|
|
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
}
|