mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 07:01:09 +00:00
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: {
|
|
files: ["*.html", "./src/**/*.rs"],
|
|
},
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('daisyui'),
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography')
|
|
],
|
|
daisyui: {
|
|
themes: ["emerald"]
|
|
},
|
|
}
|