You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
456 B
JavaScript
24 lines
456 B
JavaScript
2 years ago
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./resources/**/*.blade.php",
|
||
|
"./resources/**/*.js",
|
||
|
"./resources/**/*.vue"
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
spinner: (theme) => ({
|
||
|
default: {
|
||
|
color: '#dae1e7',
|
||
|
size: '2em',
|
||
|
border: '2px',
|
||
|
speed: '500ms'
|
||
|
},
|
||
|
}),
|
||
|
},
|
||
|
plugins: [
|
||
|
require('tailwindcss-spinner')(),
|
||
|
require("daisyui")
|
||
|
],
|
||
|
}
|