web/tailwind.config.js

9 lines
170 B
JavaScript
Raw Normal View History

2024-08-08 12:52:23 +01:00
/** @type {import('tailwindcss').Config} */
export default {
2024-09-23 13:28:45 +01:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
2024-08-08 12:52:23 +01:00
theme: {
extend: {},
},
plugins: [],
2024-09-23 13:28:45 +01:00
};