stream/tailwind.config.js

9 lines
165 B
JavaScript
Raw Normal View History

2023-12-04 12:18:16 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
};