19 lines
377 B
JavaScript
19 lines
377 B
JavaScript
module.exports = {
|
|
content: [
|
|
'./hugo_stats.json',
|
|
'./layouts/**/*.html',
|
|
'./content/**/*.{html,md}',
|
|
'./themes/**/layouts/**/*.html'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'garamond': ['EB Garamond 12', 'serif'],
|
|
'iosevka': ['Iosevka', 'monospace'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}; |