11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./web/templates/*.html"],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography')
|
|
],
|
|
}
|