mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-10 22:23:48 -05:00
10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: ["theme.config.jsx", "components/**/*.tsx"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|