vue3sandbox/tailwind.config.js
严争鸣 7f68787164 init
2024-12-09 14:54:32 +08:00

20 lines
391 B
JavaScript

/** @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%',
},
})
},
],
}