socialbot/tailwind.config.js

9 lines
188 B
JavaScript
Raw Normal View History

2022-02-03 18:41:15 +01:00
module.exports = {
content: ["./src/**/*.{html,js}", "./*.{html,js}", "./views/**/*.{ejs,js,html}"],
theme: {
extend: {},
},
2022-02-06 10:40:07 +01:00
plugins: [
require('tailwind-scrollbar'),
]
2022-02-03 18:41:15 +01:00
}