homemanager-fe/tailwind.config.cjs

13 lines
258 B
JavaScript
Raw Permalink Normal View History

2023-01-16 19:37:39 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
borderWidth: {
1: '1px',
},
},
2023-01-16 19:37:39 +00:00
},
2023-11-07 20:08:56 +00:00
plugins: [require('@tailwindcss/forms')],
2023-01-16 19:37:39 +00:00
};