You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
576 B
23 lines
576 B
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
mode: 'jit',
|
|
purge: {
|
|
enabled: process.env.NODE_ENV === 'production',
|
|
content: ['./index.html', './src/**/*.{vue,ts}'],
|
|
},
|
|
// theme: {
|
|
// extend: {
|
|
// // here's how to extend fonts if needed
|
|
// fontFamily: {
|
|
// sans: [...defaultTheme.fontFamily.sans],
|
|
// },
|
|
// },
|
|
// },
|
|
plugins: [
|
|
require('@tailwindcss/aspect-ratio'),
|
|
require('@tailwindcss/line-clamp'),
|
|
require('@tailwindcss/typography'),
|
|
require('@tailwindcss/forms'),
|
|
],
|
|
}
|
|
|