AnthoLume/tailwind.config.js

13 lines
255 B
JavaScript
Raw Normal View History

/** @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
],
theme: {
extend: {},
},
plugins: [],
};