mirror of
https://github.com/jlengrand/coolify.git
synced 2026-03-10 08:11:23 +00:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./resources/**/*.blade.php",
|
|
"./resources/**/*.js",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|