ElmDemo/UI/tailwind.config.js

11 lines
148 B
JavaScript
Raw Permalink Normal View History

2023-06-15 13:21:48 +00:00
module.exports = {
content: [
2023-06-21 16:16:22 +00:00
"./pages/index.html",
2023-06-15 13:21:48 +00:00
"./pages/*.html",
],
theme: {
extend: {},
},
plugins: [],
2023-06-20 15:35:50 +00:00
mode: 'jit',
}