1
0
mirror of https://github.com/avinal/box-box.git synced 2026-01-09 21:18:32 +05:30
Files
box-box/tailwind.config.js
2025-01-01 20:08:08 +05:30

16 lines
253 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./layouts/**/*.html",
"./assets/**/*.html",
"./public/**/*.html"
],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}