mirror of
https://github.com/avinal/box-box.git
synced 2026-01-10 21:48:32 +05:30
12 lines
192 B
JavaScript
12 lines
192 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
module.exports = {
|
||
|
|
content: ["./layouts/**/*.html"],
|
||
|
|
theme: {
|
||
|
|
extend: {},
|
||
|
|
},
|
||
|
|
plugins: [
|
||
|
|
require('@tailwindcss/typography'),
|
||
|
|
],
|
||
|
|
}
|
||
|
|
|