10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./src/**/*.{html,js, jsx, vue}", "./templates/**/*.{html, php}"],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|
||
|
|