Files
PDF-HTML-APP/tailwind.config.js
2024-09-23 14:00:40 +02:00

11 lines
175 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}", // add this line
],
theme: {
extend: {},
},
plugins: [],
}