AntCMS/tailwind.config.js
2023-01-07 13:44:03 +03:00

10 lines
314 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/Themes/Tailwind/*.{html,js}", "./src/AntCMS/*.php"], // Including the PHP files because some of the components are generated from PHP files
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}