20 lines
391 B
JavaScript
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%',
|
|
},
|
|
})
|
|
},
|
|
],
|
|
}
|