13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./templates/**/*.html",
|
|
"./assets/offline/*.{html,js}",
|
|
"./assets/reader/*.{html,js}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|