/** @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") ], }