ts/tailwind.config.js

20 lines
391 B
JavaScript
Raw Permalink Normal View History

2024-12-09 06:44:52 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [
require('tailwindcss'),
require('autoprefixer'),
function ({ addUtilities }) {
addUtilities({
'.w-h-full': {
width: '100%',
height: '100%',
},
})
},
],
}