blog/tailwind.config.js

12 lines
184 B
JavaScript
Raw Normal View History

2022-06-01 20:25:34 -04:00
module.exports = {
mode: "jit",
darkMode: "media",
content: ["./**/*.{html,md,njk}"],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
2022-06-01 20:25:34 -04:00
}