13 lines
196 B
JavaScript
13 lines
196 B
JavaScript
// tailwind.config.js
|
|
module.exports = {
|
|
content: [
|
|
'./templates/**/*.html',
|
|
'./static/**/*.js',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
}
|
|
|