cards/client/tailwind.config.js

12 lines
191 B
JavaScript
Raw Normal View History

2024-07-18 19:53:28 -04:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
relative: true,
files: ["*.html", "./src/**/*.rs"],
},
theme: {
extend: {},
},
plugins: [],
};