AntCMS/tailwind.config.js

11 lines
214 B
JavaScript
Raw Normal View History

2023-01-07 10:18:16 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/Themes/Default/Templates/*.{html,js}"],
2023-01-07 10:18:16 +00:00
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}