2022-08-14 13:27:41 -07:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{svelte,html}",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2023-04-23 22:29:12 -07:00
|
|
|
plugins: [
|
|
|
|
require('daisyui'),
|
|
|
|
],
|
2022-08-14 13:27:41 -07:00
|
|
|
}
|