omni-tools/tailwind.config.mjs

10 lines
157 B
JavaScript
Raw Permalink Normal View History

2024-06-19 18:08:19 +01:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{mjs,js,ts,jsx,tsx}'],
theme: {
extend: {}
},
plugins: []
2024-06-22 22:06:16 +01:00
};