website/tailwind.config.js

16 lines
255 B
JavaScript
Raw Normal View History

2022-05-27 08:37:08 +00:00
module.exports = {
content: [
2022-05-27 10:49:18 +00:00
"./content/**/*.{md,html}",
2022-05-27 08:37:08 +00:00
"./layouts/**/*.{html,js}",
"./themes/**/*.{html,js}"
],
theme: {
2022-05-27 10:49:18 +00:00
extend: {
fontFamily: {
sans: ['Open Sans', 'sans-serif']
}
},
2022-05-27 08:37:08 +00:00
},
plugins: [],
}