2023-10-25 23:52:01 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-10-29 00:07:24 +00:00
|
|
|
content: [
|
|
|
|
"./templates/**/*.html",
|
2023-10-30 23:23:38 +00:00
|
|
|
"./assets/local/*.{html,js}",
|
2023-10-29 00:07:24 +00:00
|
|
|
"./assets/reader/*.{html,js}",
|
|
|
|
],
|
2023-10-25 23:52:01 +00:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|