1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-11-22 12:01:08 +00:00
ibis/tailwind.config.js

18 lines
316 B
JavaScript
Raw Normal View History

2024-10-16 08:28:07 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ["*.html", "./src/**/*.rs"],
},
theme: {
extend: {},
},
plugins: [
require('daisyui'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography')
],
daisyui: {
2024-10-30 11:09:08 +00:00
themes: ["emerald"]
2024-10-16 08:28:07 +00:00
},
}