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