TTime/frontend/tailwind.config.js

10 lines
171 B
JavaScript
Raw Permalink Normal View History

2024-02-28 20:35:53 +01:00
/** @type {import('tailwindcss').Config} */
export default {
2024-03-07 11:48:34 +01:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
2024-02-28 20:35:53 +01:00
theme: {
extend: {},
},
plugins: [],
2024-03-07 11:48:34 +01:00
};